Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.61 KB

File metadata and controls

39 lines (30 loc) · 1.61 KB

AddPackageItemGatewayCommand

Properties

Name Type Description Notes
item_type ShoppingCartItemType [optional]
product_id str [optional]
database_code str [optional]
units int [optional]
group_number int [optional]
arrival_date datetime [optional]
duration int [optional]
adults int [optional]
children_ages List[int] [optional]
meal_type MealType [optional]
sections List[AddPackageSectionItemCommand] [optional]

Example

from feratel_client.models.add_package_item_gateway_command import AddPackageItemGatewayCommand

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

# convert the object into a dict
add_package_item_gateway_command_dict = add_package_item_gateway_command_instance.to_dict()
# create an instance of AddPackageItemGatewayCommand from a dict
add_package_item_gateway_command_from_dict = AddPackageItemGatewayCommand.from_dict(add_package_item_gateway_command_dict)

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