Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 967 Bytes

File metadata and controls

30 lines (21 loc) · 967 Bytes

FeatureStage

Properties

Name Type Description Notes
state FeatureStageState [optional]
value FeatureStageValue [optional]

Example

from okta.models.feature_stage import FeatureStage

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

# convert the object into a dict
feature_stage_dict = feature_stage_instance.to_dict()
# create an instance of FeatureStage from a dict
feature_stage_from_dict = FeatureStage.from_dict(feature_stage_dict)

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