/** * 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 { NotificationSchemeEvent, Scope } from './'; /** * Details about a notification scheme. * @export * @interface NotificationScheme */ export interface NotificationScheme { /** * * @type {string} * @memberof NotificationScheme */ self?: string; /** * The ID of the notification scheme. * @type {number} * @memberof NotificationScheme */ id?: number; /** * The scope of the notification scheme. * @type {Scope} * @memberof NotificationScheme */ scope?: Scope; /** * The name of the notification scheme. * @type {string} * @memberof NotificationScheme */ name?: string; /** * The notification events and associated recipients. * @type {Array} * @memberof NotificationScheme */ notificationSchemeEvents?: Array; /** * The description of the notification scheme. * @type {string} * @memberof NotificationScheme */ description?: string; /** * Expand options that include additional notification scheme details in the response. * @type {string} * @memberof NotificationScheme */ expand?: string; } export declare function NotificationSchemeFromJSON(json: any): NotificationScheme; export declare function NotificationSchemeFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationScheme; export declare function NotificationSchemeToJSON(value?: NotificationScheme): any;