Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.58 KB

File metadata and controls

31 lines (22 loc) · 1.58 KB

DoorLockSettingsCreateRequestSchema

Properties

Name Type Description Notes
encoders List[DoorLockSettingsEncoderRequestSchema] List of supported encoders. [default to []]
key_types List[DoorLockSettingsKeyTypeRequestSchema] List of supported key types. [default to []]
common_rooms List[DoorLockSettingsCommonRoomRequestSchema] List of common rooms. [default to []]

Example

from cloudbeds_pms.models.door_lock_settings_create_request_schema import DoorLockSettingsCreateRequestSchema

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

# convert the object into a dict
door_lock_settings_create_request_schema_dict = door_lock_settings_create_request_schema_instance.to_dict()
# create an instance of DoorLockSettingsCreateRequestSchema from a dict
door_lock_settings_create_request_schema_from_dict = DoorLockSettingsCreateRequestSchema.from_dict(door_lock_settings_create_request_schema_dict)

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