Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.42 KB

File metadata and controls

36 lines (27 loc) · 1.42 KB

ApplicationLinks

Properties

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]

Example

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)

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