Skip to content

Latest commit

 

History

History
76 lines (69 loc) · 3.49 KB

File metadata and controls

76 lines (69 loc) · 3.49 KB

View

Properties

Name Type Description Notes
_access ViewsAccessRep [optional] [default to undefined]
_links ParentAndSelfLinks [optional] [default to undefined]
id string Unique ID of this view [default to undefined]
accountId string ID of the account that owns this view [default to undefined]
projectId string ID of the project this view belongs to [default to undefined]
projectKey string Key of the project this view belongs to [default to undefined]
key string Unique key for the view within the account/project [default to undefined]
name string Human-readable name for the view [default to undefined]
description string Optional detailed description of the view [default to undefined]
generateSdkKeys boolean Whether to generate SDK keys for this view. Defaults to false. [default to undefined]
version number Version number for tracking changes [default to undefined]
tags Array<string> Tags associated with this view [default to undefined]
createdAt number [default to undefined]
updatedAt number [default to undefined]
archived boolean Whether this view is archived [default to false]
archivedAt number [optional] [default to undefined]
deletedAt number [optional] [default to undefined]
deleted boolean Whether this view is deleted [default to false]
maintainer Maintainer [optional] [default to undefined]
flagsSummary FlagsSummary [optional] [default to undefined]
segmentsSummary SegmentsSummary [optional] [default to undefined]
metricsSummary MetricsSummary [optional] [default to undefined]
aiConfigsSummary AIConfigsSummary [optional] [default to undefined]
resourceSummary ResourceSummary [optional] [default to undefined]
flagsExpanded ExpandedLinkedFlags [optional] [default to undefined]
segmentsExpanded ExpandedLinkedSegments [optional] [default to undefined]
metricsExpanded ExpandedLinkedMetrics [optional] [default to undefined]
aiConfigsExpanded ExpandedLinkedAIConfigs [optional] [default to undefined]
resourcesExpanded ExpandedLinkedResources [optional] [default to undefined]

Example

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

const instance: View = {
    _access,
    _links,
    id,
    accountId,
    projectId,
    projectKey,
    key,
    name,
    description,
    generateSdkKeys,
    version,
    tags,
    createdAt,
    updatedAt,
    archived,
    archivedAt,
    deletedAt,
    deleted,
    maintainer,
    flagsSummary,
    segmentsSummary,
    metricsSummary,
    aiConfigsSummary,
    resourceSummary,
    flagsExpanded,
    segmentsExpanded,
    metricsExpanded,
    aiConfigsExpanded,
    resourcesExpanded,
};

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