Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.24 KB

File metadata and controls

38 lines (32 loc) · 1.24 KB

LaunchDarklyApi::ExpandedFlag

Properties

Name Type Description Notes
key String A unique key used to reference the flag
name String A human-friendly name for the flag
description String Description of the flag [optional]
creation_date Integer Creation date in milliseconds [optional]
_version Integer Version of the flag [optional]
archived Boolean Whether the flag is archived [optional]
tags Array<String> Tags for the flag [optional]
temporary Boolean Whether the flag is temporary [optional]
include_in_snippet Boolean Whether to include in snippet [optional]
maintainer ExpandedFlagMaintainer [optional]
_links ParentAndSelfLinks [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ExpandedFlag.new(
  key: null,
  name: null,
  description: null,
  creation_date: null,
  _version: null,
  archived: null,
  tags: null,
  temporary: null,
  include_in_snippet: null,
  maintainer: null,
  _links: null
)