UNPKG

ch-chat-api-typescript-axios

Version:

An OpenAPI generator tool for the CH Chat API, designed to simplify API client generation and streamline integration workflows.

93 lines (92 loc) 1.89 kB
/** * CloudHospital.ChatApi * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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 type { NotificationCode } from './notification-code'; import type { PlatformTypes } from './platform-types'; /** * * @export * @interface ChatNotification */ export interface ChatNotification { /** * * @type {string} * @memberof ChatNotification */ 'id'?: string; /** * * @type {NotificationCode} * @memberof ChatNotification */ 'notificationCode'?: NotificationCode; /** * * @type {string} * @memberof ChatNotification */ 'receiverId'?: string; /** * * @type {string} * @memberof ChatNotification */ 'tenantId'?: string; /** * * @type {string} * @memberof ChatNotification */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof ChatNotification */ 'sessionId'?: string; /** * * @type {PlatformTypes} * @memberof ChatNotification */ 'platformType'?: PlatformTypes; /** * * @type {string} * @memberof ChatNotification */ 'assigneeId'?: string | null; /** * * @type {string} * @memberof ChatNotification */ 'message'?: string | null; /** * * @type {Date} * @memberof ChatNotification */ 'createdDate'?: Date; /** * * @type {boolean} * @memberof ChatNotification */ 'isRead'?: boolean; /** * * @type {string} * @memberof ChatNotification */ 'partition'?: string | null; }