Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.49 KB

File metadata and controls

34 lines (25 loc) · 1.49 KB

GetStatus200Response

Properties

Name Type Description Notes
api StatusParam [optional] [default to StatusParam.OK]
chart_api StatusParam [optional] [default to StatusParam.OK]
conversion_api StatusParam [optional] [default to StatusParam.OK]
generator_api_sync StatusParam [optional] [default to StatusParam.OK]
generator_api_async StatusParam [optional] [default to StatusParam.OK]
e_invoice StatusParam [optional] [default to StatusParam.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]