Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.18 KB

File metadata and controls

35 lines (26 loc) · 1.18 KB

ExperimentVariant

Properties

Name Type Description Notes
id int The internal ID of this entity.
created datetime The time this entity was created.
name str
experiment_id int [optional]
ruleset Ruleset [optional]
weight int [optional]
is_primary bool

Example

from talon_one.models.experiment_variant import ExperimentVariant

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

# convert the object into a dict
experiment_variant_dict = experiment_variant_instance.to_dict()
# create an instance of ExperimentVariant from a dict
experiment_variant_from_dict = ExperimentVariant.from_dict(experiment_variant_dict)

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