UNPKG

ch-admin-api-client-typescript

Version:
92 lines 1.92 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 { NotificationCode } from './notification-code'; /** * * @export * @interface NotificationModel */ export interface NotificationModel { /** * * @type {string} * @memberof NotificationModel */ 'id'?: string; /** * * @type {NotificationCode} * @memberof NotificationModel */ 'notificationCode'?: NotificationCode; /** * * @type {string} * @memberof NotificationModel */ 'notificationTargetId'?: string; /** * * @type {string} * @memberof NotificationModel */ 'notificationSubTargetId'?: string | null; /** * * @type {string} * @memberof NotificationModel */ 'senderId'?: string | null; /** * * @type {string} * @memberof NotificationModel */ 'senderName'?: string | null; /** * * @type {string} * @memberof NotificationModel */ 'receiverId'?: string | null; /** * * @type {string} * @memberof NotificationModel */ 'receiverName'?: string | null; /** * * @type {string} * @memberof NotificationModel */ 'message'?: string | null; /** * * @type {Date} * @memberof NotificationModel */ 'createdAt'?: Date; /** * * @type {boolean} * @memberof NotificationModel */ 'isChecked'?: boolean; /** * * @type {boolean} * @memberof NotificationModel */ 'isDeleted'?: boolean; } //# sourceMappingURL=notification-model.d.ts.map