Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 936 Bytes

File metadata and controls

26 lines (19 loc) · 936 Bytes

IntegrationDeliveryConfigurationPost

Properties

Name Type Description Notes
on boolean Whether the integration configuration is active. Default value is false. [optional] [default to undefined]
config { [key: string]: any; } [default to undefined]
tags Array<string> Tags to associate with the integration [optional] [default to undefined]
name string Name to identify the integration [optional] [default to undefined]

Example

import { IntegrationDeliveryConfigurationPost } from 'launchdarkly-api-typescript';

const instance: IntegrationDeliveryConfigurationPost = {
    on,
    config,
    tags,
    name,
};

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