Skip to content

Files

Latest commit

5f94853 · Oct 14, 2024

History

History
20 lines (14 loc) · 775 Bytes

Distribution.md

File metadata and controls

20 lines (14 loc) · 775 Bytes

LaunchDarklyApi::Distribution

Properties

Name Type Description Notes
kind String The type of distribution. [optional]
parameters Hash<String, Float> The parameters of the distribution. The parameters are different for each distribution type. When <code>kind</code> is <code>normal</code>, the parameters of the distribution are 'mu' and 'sigma'. When <code>kind</code> is <code>beta</code>, the parameters of the distribution are 'alpha' and 'beta.' [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::Distribution.new(
  kind: normal,
  parameters: null
)