| Name |
Type |
Description |
Notes |
| id |
str |
The ID of this Data Export destination |
[optional] |
| links |
Dict[str, Link] |
The location and content type of related resources |
[optional] |
| name |
str |
A human-readable name for your Data Export destination |
[optional] |
| kind |
str |
The type of Data Export destination |
[optional] |
| version |
float |
|
[optional] |
| config |
object |
An object with the configuration parameters required for the destination type |
[optional] |
| on |
bool |
Whether the export is on, that is, the status of the integration |
[optional] |
| access |
Access |
|
[optional] |
from launchdarkly_api.models.destination import Destination
# TODO update the JSON string below
json = "{}"
# create an instance of Destination from a JSON string
destination_instance = Destination.from_json(json)
# print the JSON string representation of the object
print(Destination.to_json())
# convert the object into a dict
destination_dict = destination_instance.to_dict()
# create an instance of Destination from a dict
destination_from_dict = Destination.from_dict(destination_dict)
[Back to Model list] [Back to API list] [Back to README]