| Name | Type | Description | Notes |
|---|---|---|---|
| variants | List[NewExperimentVariant] | Array of experiment variants to create |
from talon_one.models.new_experiment_variant_array import NewExperimentVariantArray
# TODO update the JSON string below
json = "{}"
# create an instance of NewExperimentVariantArray from a JSON string
new_experiment_variant_array_instance = NewExperimentVariantArray.from_json(json)
# print the JSON string representation of the object
print(NewExperimentVariantArray.to_json())
# convert the object into a dict
new_experiment_variant_array_dict = new_experiment_variant_array_instance.to_dict()
# create an instance of NewExperimentVariantArray from a dict
new_experiment_variant_array_from_dict = NewExperimentVariantArray.from_dict(new_experiment_variant_array_dict)