Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

FlagEventExperimentCollection

Properties

Name Type Description Notes
total_count int The total number of experiments
items List[FlagEventExperiment] A list of experiments

Example

from launchdarkly_api.models.flag_event_experiment_collection import FlagEventExperimentCollection

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

# convert the object into a dict
flag_event_experiment_collection_dict = flag_event_experiment_collection_instance.to_dict()
# create an instance of FlagEventExperimentCollection from a dict
flag_event_experiment_collection_from_dict = FlagEventExperimentCollection.from_dict(flag_event_experiment_collection_dict)

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