| Name |
Type |
Description |
Notes |
| key |
str |
|
|
from launchdarkly_api.models.related_experiment import RelatedExperiment
# TODO update the JSON string below
json = "{}"
# create an instance of RelatedExperiment from a JSON string
related_experiment_instance = RelatedExperiment.from_json(json)
# print the JSON string representation of the object
print(RelatedExperiment.to_json())
# convert the object into a dict
related_experiment_dict = related_experiment_instance.to_dict()
# create an instance of RelatedExperiment from a dict
related_experiment_from_dict = RelatedExperiment.from_dict(related_experiment_dict)
[Back to Model list] [Back to API list] [Back to README]