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] |
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)