/** * 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 { EventNotification, NotificationEvent } from './'; /** * Details about a notification scheme event. * @export * @interface NotificationSchemeEvent */ export interface NotificationSchemeEvent { /** * * @type {Array} * @memberof NotificationSchemeEvent */ notifications?: Array; /** * * @type {NotificationEvent} * @memberof NotificationSchemeEvent */ event?: NotificationEvent; } export declare function NotificationSchemeEventFromJSON(json: any): NotificationSchemeEvent; export declare function NotificationSchemeEventFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationSchemeEvent; export declare function NotificationSchemeEventToJSON(value?: NotificationSchemeEvent): any;