Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

ApiAccountingError

Properties

Name Type Description Notes
id str [optional]
timestamp datetime [optional]
error_code ApiErrorCode [optional]
error_details str [optional]

Example

from cloudbeds_accounting.models.api_accounting_error import ApiAccountingError

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

# convert the object into a dict
api_accounting_error_dict = api_accounting_error_instance.to_dict()
# create an instance of ApiAccountingError from a dict
api_accounting_error_from_dict = ApiAccountingError.from_dict(api_accounting_error_dict)

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