Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.63 KB

File metadata and controls

34 lines (27 loc) · 1.63 KB

CreateFlagConfigApprovalRequestRequest

Properties

Name Type Description Notes
comment string Optional comment describing the approval request [optional] [default to undefined]
description string A brief description of the changes you're requesting [default to undefined]
instructions Array<{ [key: string]: any; }> [default to undefined]
notifyMemberIds Array<string> An array of member IDs. These members are notified to review the approval request. [optional] [default to undefined]
notifyTeamKeys Array<string> An array of team keys. The members of these teams are notified to review the approval request. [optional] [default to undefined]
executionDate number [optional] [default to undefined]
operatingOnId string The ID of a scheduled change. Include this if your <code>instructions</code> include editing or deleting a scheduled change. [optional] [default to undefined]
integrationConfig { [key: string]: any; } [optional] [default to undefined]

Example

import { CreateFlagConfigApprovalRequestRequest } from 'launchdarkly-api-typescript';

const instance: CreateFlagConfigApprovalRequestRequest = {
    comment,
    description,
    instructions,
    notifyMemberIds,
    notifyTeamKeys,
    executionDate,
    operatingOnId,
    integrationConfig,
};

[Back to Model list] [Back to API list] [Back to README]