Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 998 Bytes

File metadata and controls

31 lines (22 loc) · 998 Bytes

Error

The Error object is used to represent an error response from the API.

Properties

Name Type Description Notes
http_status int The HTTP status code of the operation. [optional]
messages list[ErrorMessagesInner] A list of error messages. [optional]

Example

from ionoscloud_logging.models.error import Error

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

# convert the object into a dict
error_dict = error_instance.to_dict()
# create an instance of Error from a dict
error_from_dict = Error.from_dict(error_dict)

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