/** * 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'; export class EmployeeAlert { 'employeeID': string; 'title': string; 'message': string; 's3Bucket': string; 's3Key': string; 'fileSizeBytes': number; 'id': string; 'createdAt': Date; 'updatedAt': Date; 'isRead': boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "employeeID", "baseName": "employeeID", "type": "string" }, { "name": "title", "baseName": "title", "type": "string" }, { "name": "message", "baseName": "message", "type": "string" }, { "name": "s3Bucket", "baseName": "S3Bucket", "type": "string" }, { "name": "s3Key", "baseName": "S3Key", "type": "string" }, { "name": "fileSizeBytes", "baseName": "fileSizeBytes", "type": "number" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "createdAt", "baseName": "createdAt", "type": "Date" }, { "name": "updatedAt", "baseName": "updatedAt", "type": "Date" }, { "name": "isRead", "baseName": "isRead", "type": "boolean" } ]; static getAttributeTypeMap() { return EmployeeAlert.attributeTypeMap; } }