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.
78 lines (77 loc) • 1.95 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 { AuthorRoles } from './author-roles';
import type { InteractiveListMessageRequest } from './interactive-list-message-request';
import type { MediaModel } from './media-model';
import type { MessageType } from './message-type';
import type { TemplateMessageModel } from './template-message-model';
/**
*
* @export
* @interface ChatSendFlowMessageCommand
*/
export interface ChatSendFlowMessageCommand {
/**
*
* @type {string}
* @memberof ChatSendFlowMessageCommand
*/
'userName'?: string | null;
/**
*
* @type {string}
* @memberof ChatSendFlowMessageCommand
*/
'userEmail'?: string | null;
/**
*
* @type {string}
* @memberof ChatSendFlowMessageCommand
*/
'text'?: string | null;
/**
*
* @type {MediaModel}
* @memberof ChatSendFlowMessageCommand
*/
'media'?: MediaModel;
/**
*
* @type {InteractiveListMessageRequest}
* @memberof ChatSendFlowMessageCommand
*/
'interactiveListMessageRequest'?: InteractiveListMessageRequest;
/**
*
* @type {TemplateMessageModel}
* @memberof ChatSendFlowMessageCommand
*/
'templateMessage'?: TemplateMessageModel;
/**
*
* @type {AuthorRoles}
* @memberof ChatSendFlowMessageCommand
*/
'authorRole'?: AuthorRoles;
/**
*
* @type {MessageType}
* @memberof ChatSendFlowMessageCommand
*/
'messageType'?: MessageType;
/**
*
* @type {Date}
* @memberof ChatSendFlowMessageCommand
*/
'createdDate'?: Date;
}