/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { EmailQuarantineStatus } from './EmailQuarantineStatus'; /** * Information about the notification email of the user, including its quarantined status if the email address is currently in quarantine * @export * @interface NotificationEmail */ export interface NotificationEmail { /** * The user's email * @type {string} * @memberof NotificationEmail */ email?: string; /** * * @type {EmailQuarantineStatus} * @memberof NotificationEmail */ quarantineStatus?: EmailQuarantineStatus; } /** * Check if a given object implements the NotificationEmail interface. */ export declare function instanceOfNotificationEmail(value: object): value is NotificationEmail; export declare function NotificationEmailFromJSON(json: any): NotificationEmail; export declare function NotificationEmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationEmail; export declare function NotificationEmailToJSON(json: any): NotificationEmail; export declare function NotificationEmailToJSONTyped(value?: NotificationEmail | null, ignoreDiscriminator?: boolean): any;