| Name |
Type |
Description |
Notes |
| 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 |
[optional] [default to ''] |
| generateSdkKeys |
boolean |
Whether to generate SDK keys for this view |
[optional] [default to false] |
| 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] |
import { ViewPost } from 'launchdarkly-api-typescript';
const instance: ViewPost = {
key,
name,
description,
generateSdkKeys,
maintainerId,
maintainerTeamKey,
tags,
};
[Back to Model list] [Back to API list] [Back to README]