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