Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.11 KB

File metadata and controls

26 lines (19 loc) · 1.11 KB

ReleaserAudienceConfigInput

Properties

Name Type Description Notes
audienceId string UUID of the audience. [optional] [default to undefined]
releaseGuardianConfiguration ReleaseGuardianConfigurationInput [optional] [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]

Example

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

const instance: ReleaserAudienceConfigInput = {
    audienceId,
    releaseGuardianConfiguration,
    notifyMemberIds,
    notifyTeamKeys,
};

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