Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

ErrorMessagesInner

Properties

Name Type Description Notes
error_code str Application internal error code [optional]
message str A human readable explanation specific to this occurrence of the problem. [optional]

Example

from ionoscloud_dbaas_postgres.models.error_messages_inner import ErrorMessagesInner

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

# convert the object into a dict
error_messages_inner_dict = error_messages_inner_instance.to_dict()
# create an instance of ErrorMessagesInner from a dict
error_messages_inner_from_dict = ErrorMessagesInner.from_dict(error_messages_inner_dict)

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