Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1003 Bytes

File metadata and controls

30 lines (21 loc) · 1003 Bytes

FeatureFlagUpdate

Properties

Name Type Description Notes
name str The name of the feature flag.
value str The value of the feature flag.

Example

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]