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