Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

Destinations

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources [optional]
items List[Destination] An array of Data Export destinations [optional]

Example

from launchdarkly_api.models.destinations import Destinations

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

# convert the object into a dict
destinations_dict = destinations_instance.to_dict()
# create an instance of Destinations from a dict
destinations_from_dict = Destinations.from_dict(destinations_dict)

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