Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.01 KB

File metadata and controls

28 lines (21 loc) · 1.01 KB

SdkKeyPost

Properties

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]

Example

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]