You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromcloudbeds_pms.models.door_lock_key_create_request_schemaimportDoorLockKeyCreateRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of DoorLockKeyCreateRequestSchema from a JSON stringdoor_lock_key_create_request_schema_instance=DoorLockKeyCreateRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(DoorLockKeyCreateRequestSchema.to_json())
# convert the object into a dictdoor_lock_key_create_request_schema_dict=door_lock_key_create_request_schema_instance.to_dict()
# create an instance of DoorLockKeyCreateRequestSchema from a dictdoor_lock_key_create_request_schema_from_dict=DoorLockKeyCreateRequestSchema.from_dict(door_lock_key_create_request_schema_dict)