Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

GetStatus200Response

Properties

Name Type Description Notes
api str [optional] [default to 'ok']
chart_api str [optional] [default to 'ok']
conversion_api str [optional] [default to 'ok']
generator_api_sync str [optional] [default to 'ok']
generator_api_async str [optional] [default to 'ok']

Example

from pdf_generator_api_client.models.get_status200_response import GetStatus200Response

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

# convert the object into a dict
get_status200_response_dict = get_status200_response_instance.to_dict()
# create an instance of GetStatus200Response from a dict
get_status200_response_from_dict = GetStatus200Response.from_dict(get_status200_response_dict)

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