Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 857 Bytes

File metadata and controls

29 lines (20 loc) · 857 Bytes

ClientError

Properties

Name Type Description Notes
message str [optional]

Example

from clientapi_billingo.models.client_error import ClientError

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

# convert the object into a dict
client_error_dict = client_error_instance.to_dict()
# create an instance of ClientError from a dict
client_error_from_dict = ClientError.from_dict(client_error_dict)

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