Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 991 Bytes

ClientErrorResponse.md

File metadata and controls

29 lines (20 loc) · 991 Bytes

ClientErrorResponse

Properties

Name Type Description Notes
error ClientError [optional]

Example

from clientapi_billingo.models.client_error_response import ClientErrorResponse

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

# convert the object into a dict
client_error_response_dict = client_error_response_instance.to_dict()
# create an instance of ClientErrorResponse from a dict
client_error_response_from_dict = ClientErrorResponse.from_dict(client_error_response_dict)

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