GroupPatch
Properties
Example
from odm_api.models.group_patch import GroupPatch
# TODO update the JSON string below
json = "{}"
# create an instance of GroupPatch from a JSON string
group_patch_instance = GroupPatch.from_json(json)
# print the JSON string representation of the object
print(GroupPatch.to_json())
# convert the object into a dict
group_patch_dict = group_patch_instance.to_dict()
# create an instance of GroupPatch from a dict
group_patch_from_dict = GroupPatch.from_dict(group_patch_dict)
[Back to Model list] [Back to API list] [Back to README]