Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 610 Bytes

ContextAttributeName.md

File metadata and controls

22 lines (16 loc) · 610 Bytes

LaunchDarklyApi::ContextAttributeName

Properties

Name Type Description Notes
name String A context attribute's name.
weight Integer A relative estimate of the number of contexts seen recently that have an attribute with the associated name.
redacted Boolean Whether or not the attribute has one or more redacted values. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ContextAttributeName.new(
  name: /firstName,
  weight: 2225,
  redacted: false
)