Skip to content

GroupResponse

Properties

Name Type Description Notes
external_id str External unique resource id [optional]
id str Unique resource id [optional]
schemas List[str] [optional]
members List[GroupResponseAllOfMembers] [optional]
display_name str
meta CreateGroup201ResponseAllOfMeta [optional]

Example

from odm_api.models.group_response import GroupResponse

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

# convert the object into a dict
group_response_dict = group_response_instance.to_dict()
# create an instance of GroupResponse from a dict
group_response_from_dict = GroupResponse.from_dict(group_response_dict)
[Back to Model list] [Back to API list] [Back to README]