Details about a notification.

interface Notification {
    htmlBody?: string;
    restrict?: NotificationRecipientsRestrictions;
    subject?: string;
    textBody?: string;
    to?: NotificationRecipients;
}

Hierarchy

  • Record<string, unknown>
    • Notification

Properties

htmlBody?: string

The HTML body of the email notification for the issue.

Restricts the notifications to users with the specified permissions.

subject?: string

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.

textBody?: string

The plain text body of the email notification for the issue.

The recipients of the email notification for the issue.