Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

ApplicationFeature

The Feature object is used to configure app feature settings.

Properties

Name Type Description Notes
description str Description of the feature [optional] [readonly]
name ApplicationFeatureType [optional]
status EnabledStatus [optional]
links ApplicationFeatureLinks [optional]

Example

from okta.models.application_feature import ApplicationFeature

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

# convert the object into a dict
application_feature_dict = application_feature_instance.to_dict()
# create an instance of ApplicationFeature from a dict
application_feature_from_dict = ApplicationFeature.from_dict(application_feature_dict)

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