Skip to content

Group

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[CreateGroupRequestMembersInner] [optional]
display_name str

Example

from odm_api.models.group import Group

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

# convert the object into a dict
group_dict = group_instance.to_dict()
# create an instance of Group from a dict
group_from_dict = Group.from_dict(group_dict)
[Back to Model list] [Back to API list] [Back to README]