/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { NotificationRecipientsRestrictions } from "../definitions/NotificationRecipientsRestrictions"; import { NotificationRecipients } from "../definitions/NotificationRecipients"; export interface Notification { /** * The HTML body of the email notification for the issue. */ htmlBody?: string; /** * Restricts the notifications to users with the specified permissions. */ restrict?: NotificationRecipientsRestrictions; /** * The subject of the email notification for the issue. If this is not specified, then the subject is set to the issue key and summary. */ subject?: string; /** * The plain text body of the email notification for the issue. */ textBody?: string; /** * The recipients of the email notification for the issue. */ to?: NotificationRecipients; [x: string]: any; } //# sourceMappingURL=Notification.d.ts.map