| Name | Type | Description | Notes |
|---|---|---|---|
| access_policy | HrefObject | [optional] | |
| activate | HrefObjectActivateLink | [optional] | |
| deactivate | HrefObjectDeactivateLink | [optional] | |
| groups | HrefObject | [optional] | |
| logo | List[HrefObject] | [optional] | |
| metadata | HrefObject | [optional] | |
| var_self | HrefObjectSelfLink | [optional] | |
| users | HrefObject | [optional] |
from okta.models.application_links import ApplicationLinks
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationLinks from a JSON string
application_links_instance = ApplicationLinks.from_json(json)
# print the JSON string representation of the object
print(ApplicationLinks.to_json())
# convert the object into a dict
application_links_dict = application_links_instance.to_dict()
# create an instance of ApplicationLinks from a dict
application_links_from_dict = ApplicationLinks.from_dict(application_links_dict)