Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

BadRequestResponseSchema

Properties

Name Type Description Notes
message str
errors List[BadRequestErrorItemSchema] [optional]
code str Error code identifying the type of error [optional]

Example

from cloudbeds_pms.models.bad_request_response_schema import BadRequestResponseSchema

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

# convert the object into a dict
bad_request_response_schema_dict = bad_request_response_schema_instance.to_dict()
# create an instance of BadRequestResponseSchema from a dict
bad_request_response_schema_from_dict = BadRequestResponseSchema.from_dict(bad_request_response_schema_dict)

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