Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

BadRequestErrorItemSchema

Properties

Name Type Description Notes
var_field str
message str

Example

from cloudbeds_pms.models.bad_request_error_item_schema import BadRequestErrorItemSchema

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

# convert the object into a dict
bad_request_error_item_schema_dict = bad_request_error_item_schema_instance.to_dict()
# create an instance of BadRequestErrorItemSchema from a dict
bad_request_error_item_schema_from_dict = BadRequestErrorItemSchema.from_dict(bad_request_error_item_schema_dict)

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