Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.23 KB

File metadata and controls

37 lines (28 loc) · 1.23 KB

Group

Properties

Name Type Description Notes
created datetime [optional] [readonly]
id str [optional] [readonly]
last_membership_updated datetime [optional] [readonly]
last_updated datetime [optional] [readonly]
object_class List[str] [optional] [readonly]
profile GroupProfile [optional]
type GroupType [optional]
embedded Dict[str, object] [optional] [readonly]
links GroupLinks [optional]

Example

from okta.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]