Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.93 KB

File metadata and controls

40 lines (33 loc) · 1.93 KB

FlagLinkRep

Properties

Name Type Description Notes
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]
_key string The flag link key [optional] [default to undefined]
_integrationKey string The integration key for an integration whose <code>manifest.json</code> includes the <code>flagLink</code> capability, if this is a flag link for an existing integration [optional] [default to undefined]
_id string The ID of this flag link [default to undefined]
_deepLink string The URL for the external resource the flag is linked to [default to undefined]
_timestamp TimestampRep [default to undefined]
title string The title of the flag link [optional] [default to undefined]
description string The description of the flag link [optional] [default to undefined]
_metadata { [key: string]: string; } The metadata required by this integration in order to create a flag link, if this is a flag link for an existing integration. Defined in the integration&#39;s <code>manifest.json</code> file under <code>flagLink</code>. [optional] [default to undefined]
_createdAt number [default to undefined]
_member FlagLinkMember [optional] [default to undefined]

Example

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

const instance: FlagLinkRep = {
    _links,
    _key,
    _integrationKey,
    _id,
    _deepLink,
    _timestamp,
    title,
    description,
    _metadata,
    _createdAt,
    _member,
};

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