| 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 []] |
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)