Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.87 KB

File metadata and controls

35 lines (26 loc) · 1.87 KB

CreateAccommodationPoolRequestGatewayCommand

Properties

Name Type Description Notes
search_data SearchData [optional]
guest GuestInfoCreateAccommodationPoolRequestGatewayCommand [optional]
contact_data RequestPoolContactData [optional]
occupancy_data List[OccupancyData] [optional]
filter_details RequestFilterDetailsCreateAccommodationPoolRequestGatewayCommand [optional]
message str [optional]
currency_code str [optional]

Example

from feratel_client.models.create_accommodation_pool_request_gateway_command import CreateAccommodationPoolRequestGatewayCommand

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

# convert the object into a dict
create_accommodation_pool_request_gateway_command_dict = create_accommodation_pool_request_gateway_command_instance.to_dict()
# create an instance of CreateAccommodationPoolRequestGatewayCommand from a dict
create_accommodation_pool_request_gateway_command_from_dict = CreateAccommodationPoolRequestGatewayCommand.from_dict(create_accommodation_pool_request_gateway_command_dict)

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