Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

File metadata and controls

29 lines (20 loc) · 1.12 KB

InternalServerErrorResponseSchema

Properties

Name Type Description Notes
message str

Example

from cloudbeds_pms.models.internal_server_error_response_schema import InternalServerErrorResponseSchema

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

# convert the object into a dict
internal_server_error_response_schema_dict = internal_server_error_response_schema_instance.to_dict()
# create an instance of InternalServerErrorResponseSchema from a dict
internal_server_error_response_schema_from_dict = InternalServerErrorResponseSchema.from_dict(internal_server_error_response_schema_dict)

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