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.
71 lines (70 loc) • 1.82 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 { InteractiveBody } from './interactive-body';
import type { InteractiveFooter } from './interactive-footer';
import type { InteractiveHeader } from './interactive-header';
import type { InteractiveListSection } from './interactive-list-section';
/**
*
* @export
* @interface InteractiveListMessageRequest
*/
export interface InteractiveListMessageRequest {
/**
*
* @type {string}
* @memberof InteractiveListMessageRequest
*/
'recipient_type'?: string | null;
/**
*
* @type {string}
* @memberof InteractiveListMessageRequest
*/
'to'?: string | null;
/**
*
* @type {string}
* @memberof InteractiveListMessageRequest
*/
'reply_to_message_id'?: string | null;
/**
*
* @type {InteractiveHeader}
* @memberof InteractiveListMessageRequest
*/
'header'?: InteractiveHeader;
/**
*
* @type {InteractiveBody}
* @memberof InteractiveListMessageRequest
*/
'body'?: InteractiveBody;
/**
*
* @type {InteractiveFooter}
* @memberof InteractiveListMessageRequest
*/
'footer'?: InteractiveFooter;
/**
*
* @type {string}
* @memberof InteractiveListMessageRequest
*/
'button_text'?: string | null;
/**
*
* @type {Array<InteractiveListSection>}
* @memberof InteractiveListMessageRequest
*/
'sections'?: Array<InteractiveListSection> | null;
}