Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 986 Bytes

ScimGroup.md

File metadata and controls

31 lines (22 loc) · 986 Bytes

ScimGroup

Properties

Name Type Description Notes
id str [optional]
display_name str The Name of the Usergroup in the language of the requester
members List[ScimGroupMember] [optional]

Example

from eZmaxApi.models.scim_group import ScimGroup

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

# convert the object into a dict
scim_group_dict = scim_group_instance.to_dict()
# create an instance of ScimGroup from a dict
scim_group_from_dict = ScimGroup.from_dict(scim_group_dict)

[Back to Model list] [Back to API list] [Back to README]