ch-chat-api-client-orval
Version:
TypeScript API client for CH Chat API with SWR hooks and Axios integration
21 lines (19 loc) • 617 B
text/typescript
/**
* Generated by orval v7.10.0 🍺
* Do not edit manually.
* Cloudhospital.ChatApi
* OpenAPI spec version: 1.0
*/
import type { PlatformTypes } from './platformTypes';
import type { PlatformMetadata } from './platformMetadata';
import type { RequestCreateIntakeFormItemModel } from './requestCreateIntakeFormItemModel';
export interface CreateChatSessionCommand {
platformType?: PlatformTypes;
metadata?: PlatformMetadata;
/** @nullable */
phoneNumber?: string | null;
/** @nullable */
userName?: string | null;
/** @nullable */
intakeFormItems?: RequestCreateIntakeFormItemModel[] | null;
}