Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.8 KB

File metadata and controls

34 lines (25 loc) · 1.8 KB

CreateAccommodationOfferRequestGatewayCommand

Properties

Name Type Description Notes
search_data SearchData [optional]
guest GuestInfoCreateAccommodationOfferRequestGatewayCommand [optional]
occupancy_data List[OccupancyData] [optional]
filter_details RequestFilterDetailsCreateAccommodationOfferRequestGatewayCommand [optional]
message str [optional]
currency_code str [optional]

Example

from feratel_client.models.create_accommodation_offer_request_gateway_command import CreateAccommodationOfferRequestGatewayCommand

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

# convert the object into a dict
create_accommodation_offer_request_gateway_command_dict = create_accommodation_offer_request_gateway_command_instance.to_dict()
# create an instance of CreateAccommodationOfferRequestGatewayCommand from a dict
create_accommodation_offer_request_gateway_command_from_dict = CreateAccommodationOfferRequestGatewayCommand.from_dict(create_accommodation_offer_request_gateway_command_dict)

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