Name | Type | Description | Notes |
---|---|---|---|
op | str | Operation e.g. replace, command etc | |
path | str | Path to part of the resource being modified | |
value | AddExportSpec | [optional] |
from openapi_client.models.item_export_patch import ItemExportPatch
# TODO update the JSON string below
json = "{}"
# create an instance of ItemExportPatch from a JSON string
item_export_patch_instance = ItemExportPatch.from_json(json)
# print the JSON string representation of the object
print(ItemExportPatch.to_json())
# convert the object into a dict
item_export_patch_dict = item_export_patch_instance.to_dict()
# create an instance of ItemExportPatch from a dict
item_export_patch_from_dict = ItemExportPatch.from_dict(item_export_patch_dict)