Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

ExpandedExperimentRep

Properties

Name Type Description Notes
key str The key of the experiment
name str The name of the experiment
access Access [optional]

Example

from launchdarkly_api.models.expanded_experiment_rep import ExpandedExperimentRep

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

# convert the object into a dict
expanded_experiment_rep_dict = expanded_experiment_rep_instance.to_dict()
# create an instance of ExpandedExperimentRep from a dict
expanded_experiment_rep_from_dict = ExpandedExperimentRep.from_dict(expanded_experiment_rep_dict)

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