Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

DoorLockKeyListResponseSchema

Properties

Name Type Description Notes
data List[List[DoorLockKeyResponseSchema]]

Example

from cloudbeds_pms.models.door_lock_key_list_response_schema import DoorLockKeyListResponseSchema

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

# convert the object into a dict
door_lock_key_list_response_schema_dict = door_lock_key_list_response_schema_instance.to_dict()
# create an instance of DoorLockKeyListResponseSchema from a dict
door_lock_key_list_response_schema_from_dict = DoorLockKeyListResponseSchema.from_dict(door_lock_key_list_response_schema_dict)

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