| Name |
Type |
Description |
Notes |
| name |
string |
Human-readable name for the view |
[optional] [default to undefined] |
| description |
string |
Optional detailed description of the view |
[optional] [default to undefined] |
| generateSdkKeys |
boolean |
Whether to generate SDK keys for this view |
[optional] [default to undefined] |
| maintainerId |
string |
Member ID of the maintainer for this view. Only one of `maintainerId` or `maintainerTeamKey` can be specified. |
[optional] [default to undefined] |
| maintainerTeamKey |
string |
Key of the maintainer team for this view. Only one of `maintainerId` or `maintainerTeamKey` can be specified. |
[optional] [default to undefined] |
| tags |
Array<string> |
Tags associated with this view |
[optional] [default to undefined] |
| archived |
boolean |
Whether or not the view is archived |
[optional] [default to undefined] |
import { ViewPatch } from 'launchdarkly-api-typescript';
const instance: ViewPatch = {
name,
description,
generateSdkKeys,
maintainerId,
maintainerTeamKey,
tags,
archived,
};
[Back to Model list] [Back to API list] [Back to README]