Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

File metadata and controls

34 lines (25 loc) · 1.24 KB

GroupLinks

Discoverable resources related to the group

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
apps HrefObject [optional]
logo List[HrefObject] [optional]
source HrefObject [optional]
users HrefObject [optional]

Example

from okta.models.group_links import GroupLinks

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

# convert the object into a dict
group_links_dict = group_links_instance.to_dict()
# create an instance of GroupLinks from a dict
group_links_from_dict = GroupLinks.from_dict(group_links_dict)

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