| Name |
Type |
Description |
Notes |
| name |
string |
The context kind name |
[default to undefined] |
| description |
string |
The context kind description |
[optional] [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] |
| version |
number |
The context kind version. If not specified when the context kind is created, defaults to 1. |
[optional] [default to undefined] |
import { UpsertContextKindPayload } from 'launchdarkly-api-typescript';
const instance: UpsertContextKindPayload = {
name,
description,
hideInTargeting,
archived,
version,
};
[Back to Model list] [Back to API list] [Back to README]