Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

ExperimentCollectionRep

Properties

Name Type Description Notes
items List[Experiment] An array of experiments
total_count int The total number of experiments in this project and environment. Does not include legacy experiments. [optional]
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.experiment_collection_rep import ExperimentCollectionRep

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

# convert the object into a dict
experiment_collection_rep_dict = experiment_collection_rep_instance.to_dict()
# create an instance of ExperimentCollectionRep from a dict
experiment_collection_rep_from_dict = ExperimentCollectionRep.from_dict(experiment_collection_rep_dict)

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