| Name |
Type |
Description |
Notes |
| kind |
string |
The kind of SDK key. Can be either "sdk" (server-side) or "mobile" (mobile). Defaults to "sdk" when not explicitly defined. |
[optional] [default to KindEnum_Sdk] |
| key |
string |
The user-defined key of the SDK key. |
[default to undefined] |
| name |
string |
The human-readable name of the SDK key. |
[default to undefined] |
| description |
string |
The optional description of the SDK key. |
[optional] [default to undefined] |
| expiry |
number |
|
[optional] [default to undefined] |
import { SdkKeyPost } from 'launchdarkly-api-typescript';
const instance: SdkKeyPost = {
kind,
key,
name,
description,
expiry,
};
[Back to Model list] [Back to API list] [Back to README]