You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether the integration configuration is active. Default value is false.
[optional]
config
Dict[str, object]
tags
List[str]
Tags to associate with the integration
[optional]
name
str
Name to identify the integration
[optional]
Example
fromlaunchdarkly_api.models.integration_delivery_configuration_postimportIntegrationDeliveryConfigurationPost# TODO update the JSON string belowjson="{}"# create an instance of IntegrationDeliveryConfigurationPost from a JSON stringintegration_delivery_configuration_post_instance=IntegrationDeliveryConfigurationPost.from_json(json)
# print the JSON string representation of the objectprint(IntegrationDeliveryConfigurationPost.to_json())
# convert the object into a dictintegration_delivery_configuration_post_dict=integration_delivery_configuration_post_instance.to_dict()
# create an instance of IntegrationDeliveryConfigurationPost from a dictintegration_delivery_configuration_post_from_dict=IntegrationDeliveryConfigurationPost.from_dict(integration_delivery_configuration_post_dict)