Discoverable resources related to the group
| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] | |
| apps | HrefObject | [optional] | |
| logo | List[HrefObject] | [optional] | |
| source | HrefObject | [optional] | |
| users | HrefObject | [optional] |
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)