ch-chat-api-client-orval
Version:
TypeScript API client for CH Chat API with SWR hooks and Axios integration
20 lines (18 loc) • 589 B
text/typescript
/**
* Generated by orval v7.10.0 🍺
* Do not edit manually.
* Cloudhospital.ChatApi
* OpenAPI spec version: 1.0
*/
import type { InteractiveMessageType } from './interactiveMessageType';
import type { MessageHeader } from './messageHeader';
import type { MessageBody } from './messageBody';
import type { MessageFooter } from './messageFooter';
import type { MessageAction } from './messageAction';
export interface InteractiveFlowMessageModel {
type?: InteractiveMessageType;
header?: MessageHeader;
body?: MessageBody;
footer?: MessageFooter;
action?: MessageAction;
}