Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

AddArticleItemGatewayCommand

Properties

Name Type Description Notes
item_type ShoppingCartItemType [optional]
product_id str [optional]
database_code str [optional]
units int [optional]
group_number int [optional]

Example

from feratel_client.models.add_article_item_gateway_command import AddArticleItemGatewayCommand

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

# convert the object into a dict
add_article_item_gateway_command_dict = add_article_item_gateway_command_instance.to_dict()
# create an instance of AddArticleItemGatewayCommand from a dict
add_article_item_gateway_command_from_dict = AddArticleItemGatewayCommand.from_dict(add_article_item_gateway_command_dict)

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