Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 642 Bytes

FlagTriggerInput.md

File metadata and controls

20 lines (14 loc) · 642 Bytes

LaunchDarklyApi::FlagTriggerInput

Properties

Name Type Description Notes
comment String Optional comment describing the update [optional]
instructions Array<Hash> The instructions to perform when updating. This should be an array with objects that look like <code>{&quot;kind&quot;: &quot;trigger_action&quot;}</code>. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::FlagTriggerInput.new(
  comment: optional comment,
  instructions: [{&quot;kind&quot;:&quot;disableTrigger&quot;}]
)