Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.25 KB

File metadata and controls

38 lines (29 loc) · 1.25 KB

AppLink

Properties

Name Type Description Notes
app_assignment_id str [optional] [readonly]
app_instance_id str [optional] [readonly]
app_name str [optional] [readonly]
credentials_setup bool [optional] [readonly]
hidden bool [optional] [readonly]
id str [optional] [readonly]
label str [optional] [readonly]
link_url str [optional] [readonly]
logo_url str [optional] [readonly]
sort_order int [optional] [readonly]

Example

from okta.models.app_link import AppLink

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

# convert the object into a dict
app_link_dict = app_link_instance.to_dict()
# create an instance of AppLink from a dict
app_link_from_dict = AppLink.from_dict(app_link_dict)

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