Skip to content

Files

Latest commit

6eb4269 · Dec 9, 2024

History

History
31 lines (22 loc) · 1.04 KB

ItemExportPatch.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

ItemExportPatch

Properties

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]

Example

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)

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