Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1015 Bytes

ScimGroupMember.md

File metadata and controls

32 lines (23 loc) · 1015 Bytes

ScimGroupMember

Properties

Name Type Description Notes
value str [optional]
display str [optional]
type str [optional]
ref str [optional]

Example

from eZmaxApi.models.scim_group_member import ScimGroupMember

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

# convert the object into a dict
scim_group_member_dict = scim_group_member_instance.to_dict()
# create an instance of ScimGroupMember from a dict
scim_group_member_form_dict = scim_group_member.from_dict(scim_group_member_dict)

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