Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

ExperimentResult

Properties

Name Type Description Notes
variants List[ExperimentVariantResult]
confidence ExperimentVariantResultConfidence
experiment_id int

Example

from talon_one.models.experiment_result import ExperimentResult

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

# convert the object into a dict
experiment_result_dict = experiment_result_instance.to_dict()
# create an instance of ExperimentResult from a dict
experiment_result_from_dict = ExperimentResult.from_dict(experiment_result_dict)

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