Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.25 KB

File metadata and controls

36 lines (27 loc) · 1.25 KB

Feature

Specifies feature release cycle information

Properties

Name Type Description Notes
description str Brief description of the feature and what it provides [optional]
id str Unique identifier for this feature [optional] [readonly]
name str Name of the feature [optional]
stage FeatureStage [optional]
status EnabledStatus [optional]
type FeatureType [optional]
links FeatureLinks [optional]

Example

from okta.models.feature import Feature

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

# convert the object into a dict
feature_dict = feature_instance.to_dict()
# create an instance of Feature from a dict
feature_from_dict = Feature.from_dict(feature_dict)

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