/* tslint:disable */ /* eslint-disable */ /** * Account Management Service API * Manage user subscriptions and clusters * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TemplateParameter } from './template-parameter'; /** * * @export * @interface NotificationRequest */ export interface NotificationRequest { /** * * @type {string} * @memberof NotificationRequest */ 'bcc_address'?: string; /** * * @type {string} * @memberof NotificationRequest */ 'cluster_id'?: string; /** * * @type {string} * @memberof NotificationRequest */ 'cluster_uuid'?: string; /** * * @type {boolean} * @memberof NotificationRequest */ 'include_red_hat_associates'?: boolean; /** * * @type {boolean} * @memberof NotificationRequest */ 'internal_only'?: boolean; /** * * @type {string} * @memberof NotificationRequest */ 'subject'?: string; /** * * @type {string} * @memberof NotificationRequest */ 'subscription_id'?: string; /** * * @type {string} * @memberof NotificationRequest */ 'template_name': string; /** * * @type {Array} * @memberof NotificationRequest */ 'template_parameters'?: Array; }