Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.69 KB

File metadata and controls

39 lines (30 loc) · 1.69 KB

IntegrationDeliveryConfiguration

Properties

Name Type Description Notes
links IntegrationDeliveryConfigurationLinks
id str The integration ID
integration_key str The integration key
project_key str The project key
environment_key str The environment key
config Dict[str, object]
on bool Whether the configuration is turned on
tags List[str] List of tags for this configuration
name str Name of the configuration
version int Version of the current configuration
access Access [optional]

Example

from launchdarkly_api.models.integration_delivery_configuration import IntegrationDeliveryConfiguration

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

# convert the object into a dict
integration_delivery_configuration_dict = integration_delivery_configuration_instance.to_dict()
# create an instance of IntegrationDeliveryConfiguration from a dict
integration_delivery_configuration_from_dict = IntegrationDeliveryConfiguration.from_dict(integration_delivery_configuration_dict)

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