/** * 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. */ /** * Details about a notification event. * @export * @interface NotificationEvent */ export interface NotificationEvent { /** * The description of the event. * @type {string} * @memberof NotificationEvent */ description?: string; /** * The name of the event. * @type {string} * @memberof NotificationEvent */ name?: string; /** * The ID of the event. The event can be a [Jira system event](https://confluence.atlassian.com/x/8YdKLg#Creatinganotificationscheme-eventsEvents) or a [custom event](https://confluence.atlassian.com/x/AIlKLg). * @type {number} * @memberof NotificationEvent */ id?: number; /** * The template of the event. Only custom events configured by Jira administrators have template. * @type {NotificationEvent} * @memberof NotificationEvent */ templateEvent?: NotificationEvent; } export declare function NotificationEventFromJSON(json: any): NotificationEvent; export declare function NotificationEventFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationEvent; export declare function NotificationEventToJSON(value?: NotificationEvent): any;