Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.5 KB

File metadata and controls

40 lines (33 loc) · 1.5 KB

IntegrationDeliveryConfiguration

Properties

Name Type Description Notes
_links IntegrationDeliveryConfigurationLinks [default to undefined]
_id string The integration ID [default to undefined]
integrationKey string The integration key [default to undefined]
projectKey string The project key [default to undefined]
environmentKey string The environment key [default to undefined]
config { [key: string]: any; } [default to undefined]
on boolean Whether the configuration is turned on [default to undefined]
tags Array<string> List of tags for this configuration [default to undefined]
name string Name of the configuration [default to undefined]
version number Version of the current configuration [default to undefined]
_access Access [optional] [default to undefined]

Example

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

const instance: IntegrationDeliveryConfiguration = {
    _links,
    _id,
    integrationKey,
    projectKey,
    environmentKey,
    config,
    on,
    tags,
    name,
    version,
    _access,
};

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