| 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] |
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]