Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 859 Bytes

LayerRep.md

File metadata and controls

28 lines (22 loc) · 859 Bytes

LaunchDarklyApi::LayerRep

Properties

Name Type Description Notes
key String The key of the layer
name String The name of the layer
description String The description of the layer
created_at Integer
randomization_unit String The unit of randomization for the layer [optional]
environments Hash<String, LayerConfigurationRep> The layer configurations for each requested environment [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::LayerRep.new(
  key: checkout-flow,
  name: Checkout Flow,
  description: The checkout flow for the application,
  created_at: null,
  randomization_unit: user,
  environments: null
)