Skip to content

GroupPatchOperationsInner

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.group_patch_operations_inner import GroupPatchOperationsInner

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

# convert the object into a dict
group_patch_operations_inner_dict = group_patch_operations_inner_instance.to_dict()
# create an instance of GroupPatchOperationsInner from a dict
group_patch_operations_inner_from_dict = GroupPatchOperationsInner.from_dict(group_patch_operations_inner_dict)
[Back to Model list] [Back to API list] [Back to README]