Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

ItemTaskPatch.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

ItemTaskPatch

Properties

Name Type Description Notes
op str Operation e.g. replace, command etc
path str Path to part of the resource being modified
value ItemTaskPatchValue [optional]

Example

from openapi_client.models.item_task_patch import ItemTaskPatch

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

# convert the object into a dict
item_task_patch_dict = item_task_patch_instance.to_dict()
# create an instance of ItemTaskPatch from a dict
item_task_patch_from_dict = ItemTaskPatch.from_dict(item_task_patch_dict)

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