Skip to content

PatchOperation

Properties

Name Type Description Notes
op str
path str [optional]
value object Corresponding 'value' of that field specified by 'path' [optional]

Example

from odm_api.models.patch_operation import PatchOperation

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

# convert the object into a dict
patch_operation_dict = patch_operation_instance.to_dict()
# create an instance of PatchOperation from a dict
patch_operation_from_dict = PatchOperation.from_dict(patch_operation_dict)
[Back to Model list] [Back to API list] [Back to README]