Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

ReservationTransferDetails

Properties

Name Type Description Notes
id str Reservation ID. [optional]
identifier str Reservation Identifier. [optional]
guest_name str Guest Name. [optional]
status ReservationStatus [optional]
checkin_date date Check in date. [optional]
checkout_date date Checkout in date. [optional]

Example

from cloudbeds_accounting.models.reservation_transfer_details import ReservationTransferDetails

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

# convert the object into a dict
reservation_transfer_details_dict = reservation_transfer_details_instance.to_dict()
# create an instance of ReservationTransferDetails from a dict
reservation_transfer_details_from_dict = ReservationTransferDetails.from_dict(reservation_transfer_details_dict)

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