Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.42 KB

CreateFlagConfigApprovalRequestRequest.md

File metadata and controls

32 lines (26 loc) · 1.42 KB

LaunchDarklyApi::CreateFlagConfigApprovalRequestRequest

Properties

Name Type Description Notes
comment String Optional comment describing the approval request [optional]
description String A brief description of the changes you're requesting
instructions Array<Hash>
notify_member_ids Array<String> An array of member IDs. These members are notified to review the approval request. [optional]
notify_team_keys Array<String> An array of team keys. The members of these teams are notified to review the approval request. [optional]
execution_date Integer [optional]
operating_on_id String The ID of a scheduled change. Include this if your <code>instructions</code> include editing or deleting a scheduled change. [optional]
integration_config Hash<String, Object> [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::CreateFlagConfigApprovalRequestRequest.new(
  comment: optional comment,
  description: Requesting to update targeting,
  instructions: null,
  notify_member_ids: [&quot;1234a56b7c89d012345e678f&quot;],
  notify_team_keys: [&quot;example-reviewer-team&quot;],
  execution_date: null,
  operating_on_id: 6297ed79dee7dc14e1f9a80c,
  integration_config: null
)