Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

File metadata and controls

33 lines (24 loc) · 1.39 KB

ApplicationVisibility

Specifies visibility settings for the app

Properties

Name Type Description Notes
app_links Dict[str, bool] Links or icons that appear on the End-User Dashboard if they're set to `true`. [optional]
auto_launch bool Automatically signs in to the app when user signs into Okta [optional]
auto_submit_toolbar bool Automatically sign in when user lands on the sign-in page [optional]
hide ApplicationVisibilityHide [optional]

Example

from okta.models.application_visibility import ApplicationVisibility

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

# convert the object into a dict
application_visibility_dict = application_visibility_instance.to_dict()
# create an instance of ApplicationVisibility from a dict
application_visibility_from_dict = ApplicationVisibility.from_dict(application_visibility_dict)

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