Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.34 KB

File metadata and controls

41 lines (32 loc) · 2.34 KB

CatalogApplication

An app in the OIN catalog

Properties

Name Type Description Notes
category str Category for the app in the OIN catalog [optional] [readonly]
description str Description of the app in the OIN catalog [optional] [readonly]
display_name str OIN catalog app display name [optional] [readonly]
features List[str] Features supported by the app. See app features. [optional] [readonly]
id str ID of the app instance. Okta returns this property only for apps not in the OIN catalog. [optional] [readonly]
last_updated datetime Timestamp when the object was last updated [optional] [readonly]
name str App key name. For OIN catalog apps, this is a unique key for the app definition. [optional]
sign_on_modes List[str] Authentication mode for the app. See app signOnMode. [optional]
status CatalogApplicationStatus [optional]
verification_status str OIN verification status of the catalog app [optional]
website str Website of the OIN catalog app [optional]
links CatalogApplicationLinks [optional]

Example

from okta.models.catalog_application import CatalogApplication

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

# convert the object into a dict
catalog_application_dict = catalog_application_instance.to_dict()
# create an instance of CatalogApplication from a dict
catalog_application_from_dict = CatalogApplication.from_dict(catalog_application_dict)

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