Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.75 KB

File metadata and controls

38 lines (29 loc) · 1.75 KB

AddAdditionalServiceItemGatewayCommand

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]
starting_time str [optional]
duration_value int [optional]
linked_data AddItemLinkedDataGatewayCommand [optional]
price_overrides AddServicePriceOverrides [optional]

Example

from feratel_client.models.add_additional_service_item_gateway_command import AddAdditionalServiceItemGatewayCommand

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

# convert the object into a dict
add_additional_service_item_gateway_command_dict = add_additional_service_item_gateway_command_instance.to_dict()
# create an instance of AddAdditionalServiceItemGatewayCommand from a dict
add_additional_service_item_gateway_command_from_dict = AddAdditionalServiceItemGatewayCommand.from_dict(add_additional_service_item_gateway_command_dict)

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