Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.42 KB

File metadata and controls

34 lines (25 loc) · 1.42 KB

ApplicationFeature

The Feature object is used to configure application feature settings. The only feature currently supported is USER_PROVISIONING for the Org2Org application type.

Properties

Name Type Description Notes
capabilities CapabilitiesObject [optional]
description str Description of the feature [optional] [readonly]
name str Identifying name of the feature [optional] [readonly]
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]