Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 944 Bytes

Group.md

File metadata and controls

30 lines (22 loc) · 944 Bytes

Group

Properties

Name Type Description Notes
id int Group's unique Onelogin ID [optional]
name str Group name [optional]
reference str Deprecated. Will always show the attribute nil="true". [optional]

Example

from onelogin.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_form_dict = group.from_dict(group_dict)

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