/** * Zero Notification Service * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; export class MailMessage { 'subject'?: string; /** * A version of the body containing only text content */ 'body'?: string; /** * A version of the body containing rich content for clients which support it */ 'richBody'?: string; /** * A template to use instead of specifying the subject and body */ 'templateId'?: string; /** * Schedule these mesages to go out at the time specified by this UNIX timestamp */ 'scheduleSendAtTimestamp'?: number; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "subject", "baseName": "subject", "type": "string", "format": "" }, { "name": "body", "baseName": "body", "type": "string", "format": "" }, { "name": "richBody", "baseName": "richBody", "type": "string", "format": "" }, { "name": "templateId", "baseName": "templateId", "type": "string", "format": "" }, { "name": "scheduleSendAtTimestamp", "baseName": "ScheduleSendAtTimestamp", "type": "number", "format": "int64" } ]; static getAttributeTypeMap() { return MailMessage.attributeTypeMap; } public constructor() { } }