Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 947 Bytes

File metadata and controls

28 lines (22 loc) · 947 Bytes

TalonOne::CheckEventBlock

Properties

Name Type Description Notes
id String Unique identifier for this block.
type String Identifies the block variant and determines which additional properties are present in it.
tags Array<String> Semantic labels attached to this block. [optional]
event_type String The event type to check against.
matchers Array<PromotionBlock> [optional]
on_failure Array<PromotionBlock> Promotion blocks evaluated when this block fails or returns false. [optional]

Example

require 'talon_one_sdk'

instance = TalonOne::CheckEventBlock.new(
  id: a1b2c3d4-e5f6-7890-abcd-ef1234567890,
  type: null,
  tags: null,
  event_type: profileCreated,
  matchers: null,
  on_failure: null
)