Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

AddItemLinkedDataGatewayCommand

Properties

Name Type Description Notes
link_type CartItemLinkType [optional]
parent_type ShoppingCartItemType [optional]
parent_id str [optional]

Example

from feratel_client.models.add_item_linked_data_gateway_command import AddItemLinkedDataGatewayCommand

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

# convert the object into a dict
add_item_linked_data_gateway_command_dict = add_item_linked_data_gateway_command_instance.to_dict()
# create an instance of AddItemLinkedDataGatewayCommand from a dict
add_item_linked_data_gateway_command_from_dict = AddItemLinkedDataGatewayCommand.from_dict(add_item_linked_data_gateway_command_dict)

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