| Name | Type | Description | Notes |
|---|---|---|---|
| link_type | CartItemLinkType | [optional] | |
| parent_type | ShoppingCartItemType | [optional] | |
| parent_id | str | [optional] |
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)