Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

ExperimentVariantAllocation

Properties

Name Type Description Notes
experiment_id int The ID of the experiment.
variant_id int The ID of the variant to be allocated.

Example

from talon_one.models.experiment_variant_allocation import ExperimentVariantAllocation

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

# convert the object into a dict
experiment_variant_allocation_dict = experiment_variant_allocation_instance.to_dict()
# create an instance of ExperimentVariantAllocation from a dict
experiment_variant_allocation_from_dict = ExperimentVariantAllocation.from_dict(experiment_variant_allocation_dict)

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