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.
64 lines (63 loc) • 1.62 kB
TypeScript
/**
* 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 { PlatformMetadata } from './platform-metadata';
import type { PlatformTypes } from './platform-types';
import type { RequestCreateIntakeFormItemModel } from './request-create-intake-form-item-model';
/**
*
* @export
* @interface CreateChatSessionCommand
*/
export interface CreateChatSessionCommand {
/**
*
* @type {string}
* @memberof CreateChatSessionCommand
*/
'targetHospitalId'?: string;
/**
*
* @type {string}
* @memberof CreateChatSessionCommand
*/
'targetHospitalName'?: string | null;
/**
*
* @type {PlatformTypes}
* @memberof CreateChatSessionCommand
*/
'platformType'?: PlatformTypes;
/**
*
* @type {PlatformMetadata}
* @memberof CreateChatSessionCommand
*/
'metadata'?: PlatformMetadata;
/**
*
* @type {string}
* @memberof CreateChatSessionCommand
*/
'phoneNumber'?: string | null;
/**
*
* @type {string}
* @memberof CreateChatSessionCommand
*/
'userName'?: string | null;
/**
*
* @type {Array<RequestCreateIntakeFormItemModel>}
* @memberof CreateChatSessionCommand
*/
'intakeFormItems'?: Array<RequestCreateIntakeFormItemModel> | null;
}