/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { NotificationRecipients, NotificationRecipientsRestrictions } from './'; /** * Details about a notification. * @export * @interface Notification */ export interface Notification { [key: string]: object | any; /** * The plain text body of the email notification for the issue. * @type {string} * @memberof Notification */ textBody?: 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. * @type {string} * @memberof Notification */ subject?: string; /** * Restricts the notifications to users with the specified permissions. * @type {NotificationRecipientsRestrictions} * @memberof Notification */ restrict?: NotificationRecipientsRestrictions; /** * The HTML body of the email notification for the issue. * @type {string} * @memberof Notification */ htmlBody?: string; /** * The recipients of the email notification for the issue. * @type {NotificationRecipients} * @memberof Notification */ to?: NotificationRecipients; } export declare function NotificationFromJSON(json: any): Notification; export declare function NotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Notification; export declare function NotificationToJSON(value?: Notification): any;