Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.77 KB

File metadata and controls

42 lines (35 loc) · 1.77 KB

ContextKindRep

Properties

Name Type Description Notes
key string The context kind key [default to undefined]
name string The context kind name [default to undefined]
description string The context kind description [default to undefined]
version number The context kind version [default to undefined]
creationDate number [default to undefined]
lastModified number [default to undefined]
lastSeen number [optional] [default to undefined]
environmentObservations Array<ContextKindEnvironmentObservation> Recent environment observations retained from flag evaluations. This is not a complete historical record. [optional] [default to undefined]
createdFrom string [default to undefined]
hideInTargeting boolean Alias for archived. [optional] [default to undefined]
archived boolean Whether the context kind is archived. Archived context kinds are unavailable for targeting. [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]

Example

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

const instance: ContextKindRep = {
    key,
    name,
    description,
    version,
    creationDate,
    lastModified,
    lastSeen,
    environmentObservations,
    createdFrom,
    hideInTargeting,
    archived,
    _links,
};

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