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.

80 lines (79 loc) 1.53 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 { IntakeFormItem } from './intake-form-item'; /** * * @export * @interface IntakeForm */ export interface IntakeForm { /** * * @type {string} * @memberof IntakeForm */ 'id'?: string; /** * * @type {string} * @memberof IntakeForm */ 'tenantId'?: string; /** * * @type {string} * @memberof IntakeForm */ 'sessionId'?: string; /** * * @type {string} * @memberof IntakeForm */ 'userId'?: string; /** * * @type {string} * @memberof IntakeForm */ 'phoneNumber'?: string | null; /** * * @type {Date} * @memberof IntakeForm */ 'createdDate'?: Date; /** * * @type {string} * @memberof IntakeForm */ 'createdBy'?: string | null; /** * * @type {Date} * @memberof IntakeForm */ 'updatedDate'?: Date | null; /** * * @type {string} * @memberof IntakeForm */ 'updateBy'?: string | null; /** * * @type {Array<IntakeFormItem>} * @memberof IntakeForm */ 'items'?: Array<IntakeFormItem> | null; }