/** * wallet-api * API * * The version of the OpenAPI document: 2.1.600 * Contact: development@wallet.inc * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; import { Employee } from './employee'; export class Message { 'id': string; 'createdAt': Date; 'updatedAt': Date; 'toEmployee'?: Employee; 'fromEmployee'?: Employee; 'isRead': boolean; 'subject': string; 'body': string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "createdAt", "baseName": "createdAt", "type": "Date" }, { "name": "updatedAt", "baseName": "updatedAt", "type": "Date" }, { "name": "toEmployee", "baseName": "toEmployee", "type": "Employee" }, { "name": "fromEmployee", "baseName": "fromEmployee", "type": "Employee" }, { "name": "isRead", "baseName": "isRead", "type": "boolean" }, { "name": "subject", "baseName": "subject", "type": "string" }, { "name": "body", "baseName": "body", "type": "string" } ]; static getAttributeTypeMap() { return Message.attributeTypeMap; } }