| Name | Type | Description | Notes |
|---|---|---|---|
| state | FeatureStageState | [optional] | |
| value | FeatureStageValue | [optional] |
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)