Skip to content

GroupResponseAllOfMembers

Properties

Name Type Description Notes
value str
display str [optional]
ref str The URI of the member resource

Example

from odm_api.models.group_response_all_of_members import GroupResponseAllOfMembers

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

# convert the object into a dict
group_response_all_of_members_dict = group_response_all_of_members_instance.to_dict()
# create an instance of GroupResponseAllOfMembers from a dict
group_response_all_of_members_from_dict = GroupResponseAllOfMembers.from_dict(group_response_all_of_members_dict)
[Back to Model list] [Back to API list] [Back to README]