Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

FeatureFlag

Properties

Name Type Description Notes
name str The name of the feature flag.
value str The value of the feature flag.
created datetime The time this entity was last created. [optional]
modified datetime The time this entity was last modified. [optional]

Example

from talon_one.models.feature_flag import FeatureFlag

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

# convert the object into a dict
feature_flag_dict = feature_flag_instance.to_dict()
# create an instance of FeatureFlag from a dict
feature_flag_from_dict = FeatureFlag.from_dict(feature_flag_dict)

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