Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 987 Bytes

File metadata and controls

29 lines (20 loc) · 987 Bytes

InlineObjectResponse

Properties

Name Type Description Notes
success bool [optional]

Example

from pdf_generator_api_client.models.inline_object_response import InlineObjectResponse

# TODO update the JSON string below
json = "{}"
# create an instance of InlineObjectResponse from a JSON string
inline_object_response_instance = InlineObjectResponse.from_json(json)
# print the JSON string representation of the object
print(InlineObjectResponse.to_json())

# convert the object into a dict
inline_object_response_dict = inline_object_response_instance.to_dict()
# create an instance of InlineObjectResponse from a dict
inline_object_response_from_dict = InlineObjectResponse.from_dict(inline_object_response_dict)

[Back to Model list] [Back to API list] [Back to README]