Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.06 KB

ConditionInputRep.md

File metadata and controls

34 lines (28 loc) · 1.06 KB

LaunchDarklyApi::ConditionInputRep

Properties

Name Type Description Notes
schedule_kind String [optional]
execution_date Integer [optional]
wait_duration Integer For workflow stages whose scheduled execution is relative, how far in the future the stage should start. [optional]
wait_duration_unit String [optional]
execute_now Boolean Whether the workflow stage should be executed immediately [optional]
description String [optional]
notify_member_ids Array<String> [optional]
notify_team_keys Array<String> [optional]
kind String [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ConditionInputRep.new(
  schedule_kind: null,
  execution_date: null,
  wait_duration: 2,
  wait_duration_unit: null,
  execute_now: false,
  description: null,
  notify_member_ids: null,
  notify_team_keys: null,
  kind: null
)