Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 942 Bytes

File metadata and controls

28 lines (22 loc) · 942 Bytes

LaunchDarklyApi::AiConfigsFilter

Properties

Name Type Description Notes
type String Filter type. One of [contextAttribute, eventProperty, group]
attribute String If not a group node, the context attribute name or event property name to filter on [optional]
op String
values Array<Object> The context attribute / event property values or group member nodes
context_kind String For context attribute filters, the context kind. [optional]
negate Boolean If set, then take the inverse of the operator. 'in' becomes 'not in'.

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::AiConfigsFilter.new(
  type: contextAttribute,
  attribute: country,
  op: null,
  values: [&quot;JP&quot;],
  context_kind: user,
  negate: false
)