Skip to content

Files

Latest commit

5f94853 · Oct 14, 2024

History

History
22 lines (16 loc) · 797 Bytes

RandomizationUnitInput.md

File metadata and controls

22 lines (16 loc) · 797 Bytes

LaunchDarklyApi::RandomizationUnitInput

Properties

Name Type Description Notes
randomization_unit String The unit of randomization. Must match the key of an existing context kind in this project.
default Boolean If true, any experiment iterations created within this project will default to using this randomization unit. A project can only have one default randomization unit. [optional]
standard_randomization_unit String One of LaunchDarkly's fixed set of standard randomization units.

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::RandomizationUnitInput.new(
  randomization_unit: user,
  default: true,
  standard_randomization_unit: null
)