Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

UpdateExperimentVariantName

Properties

Name Type Description Notes
name str The name of the variant.

Example

from talon_one.models.update_experiment_variant_name import UpdateExperimentVariantName

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

# convert the object into a dict
update_experiment_variant_name_dict = update_experiment_variant_name_instance.to_dict()
# create an instance of UpdateExperimentVariantName from a dict
update_experiment_variant_name_from_dict = UpdateExperimentVariantName.from_dict(update_experiment_variant_name_dict)

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