| Name |
Type |
Description |
Notes |
| name |
str |
The name of the feature flag. |
|
| value |
str |
The value of the feature flag. |
|
from talon_one.models.feature_flag_update import FeatureFlagUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of FeatureFlagUpdate from a JSON string
feature_flag_update_instance = FeatureFlagUpdate.from_json(json)
# print the JSON string representation of the object
print(FeatureFlagUpdate.to_json())
# convert the object into a dict
feature_flag_update_dict = feature_flag_update_instance.to_dict()
# create an instance of FeatureFlagUpdate from a dict
feature_flag_update_from_dict = FeatureFlagUpdate.from_dict(feature_flag_update_dict)
[Back to Model list] [Back to API list] [Back to README]