Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

File metadata and controls

29 lines (20 loc) · 1.24 KB

DoorLockKeyFailedToGenerateResponseSchema

Properties

Name Type Description Notes
message str

Example

from cloudbeds_pms.models.door_lock_key_failed_to_generate_response_schema import DoorLockKeyFailedToGenerateResponseSchema

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

# convert the object into a dict
door_lock_key_failed_to_generate_response_schema_dict = door_lock_key_failed_to_generate_response_schema_instance.to_dict()
# create an instance of DoorLockKeyFailedToGenerateResponseSchema from a dict
door_lock_key_failed_to_generate_response_schema_from_dict = DoorLockKeyFailedToGenerateResponseSchema.from_dict(door_lock_key_failed_to_generate_response_schema_dict)

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