Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 798 Bytes

File metadata and controls

26 lines (20 loc) · 798 Bytes

LaunchDarklyApi::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 'sdk']
key String The user-defined key of the SDK key.
name String The human-readable name of the SDK key.
description String The optional description of the SDK key. [optional]
expiry Integer [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::SdkKeyPost.new(
  kind: null,
  key: null,
  name: null,
  description: null,
  expiry: null
)