Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 705 Bytes

ResourceId.md

File metadata and controls

26 lines (20 loc) · 705 Bytes

LaunchDarklyApi::ResourceId

Properties

Name Type Description Notes
environment_key String The environment key [optional]
flag_key String Deprecated, use <code>key</code> instead [optional]
key String The key of the flag or segment [optional]
kind String [optional]
project_key String The project key [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ResourceId.new(
  environment_key: environment-key-123abc,
  flag_key: null,
  key: segment-key-123abc,
  kind: null,
  project_key: project-key-123abc
)