Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.17 KB

File metadata and controls

36 lines (27 loc) · 1.17 KB

HoldoutRep

Properties

Name Type Description Notes
id str
status str
description str [optional]
holdout_amount str The percentage of traffic allocated to this holdout.
created_at int
updated_at int
base_experiment Experiment
experiments List[RelatedExperimentRep] [optional]

Example

from launchdarkly_api.models.holdout_rep import HoldoutRep

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

# convert the object into a dict
holdout_rep_dict = holdout_rep_instance.to_dict()
# create an instance of HoldoutRep from a dict
holdout_rep_from_dict = HoldoutRep.from_dict(holdout_rep_dict)

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