Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.95 KB

File metadata and controls

32 lines (25 loc) · 1.95 KB

CreateCopyFlagConfigApprovalRequestRequest

Properties

Name Type Description Notes
comment string Optional comment describing the approval request [optional] [default to undefined]
description string A brief description of your changes [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]
source SourceFlag [default to undefined]
includedActions Array<string> Optional list of the flag changes to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If neither are included, then all flag changes will be copied. [optional] [default to undefined]
excludedActions Array<string> Optional list of the flag changes NOT to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If neither are included, then all flag changes will be copied. [optional] [default to undefined]

Example

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

const instance: CreateCopyFlagConfigApprovalRequestRequest = {
    comment,
    description,
    notifyMemberIds,
    notifyTeamKeys,
    source,
    includedActions,
    excludedActions,
};

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