The specific properties of the "PATCH" catalog sync action. Note: - If you do not provide a new price value, the existing price value is retained. - If you do not provide a new product value, the product value is set to null.
| Name | Type | Description | Notes |
|---|---|---|---|
| sku | str | The unique SKU of the item to patch. | |
| price | float | Price of the item. | [optional] |
| attributes | object | The attributes of the item to patch. | [optional] |
| product | Product | [optional] | |
| create_if_not_exists | bool | Indicates whether to create an item if the SKU does not exist. | [optional] [default to False] |
from talon_one.models.patch_item_catalog_action import PatchItemCatalogAction
# TODO update the JSON string below
json = "{}"
# create an instance of PatchItemCatalogAction from a JSON string
patch_item_catalog_action_instance = PatchItemCatalogAction.from_json(json)
# print the JSON string representation of the object
print(PatchItemCatalogAction.to_json())
# convert the object into a dict
patch_item_catalog_action_dict = patch_item_catalog_action_instance.to_dict()
# create an instance of PatchItemCatalogAction from a dict
patch_item_catalog_action_from_dict = PatchItemCatalogAction.from_dict(patch_item_catalog_action_dict)