UNPKG

ch-admin-api-client-typescript

Version:
80 lines 1.72 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EmailStatus } from './email-status'; /** * * @export * @interface EmailRecordItemModel */ export interface EmailRecordItemModel { /** * * @type {string} * @memberof EmailRecordItemModel */ 'emailRecordId'?: string; /** * * @type {string} * @memberof EmailRecordItemModel */ 'messageId'?: string | null; /** * * @type {string} * @memberof EmailRecordItemModel */ 'emailTemplate'?: string | null; /** * * @type {string} * @memberof EmailRecordItemModel */ 'senderEmail'?: string | null; /** * * @type {string} * @memberof EmailRecordItemModel */ 'senderName'?: string | null; /** * * @type {string} * @memberof EmailRecordItemModel */ 'recipientEmail'?: string | null; /** * * @type {string} * @memberof EmailRecordItemModel */ 'recipientName'?: string | null; /** * * @type {EmailStatus} * @memberof EmailRecordItemModel */ 'status'?: EmailStatus; /** * * @type {Date} * @memberof EmailRecordItemModel */ 'createdDate'?: Date; /** * * @type {Date} * @memberof EmailRecordItemModel */ 'updatedDate'?: Date | null; } //# sourceMappingURL=email-record-item-model.d.ts.map