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.
45 lines (44 loc) • 1.18 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 { TemplateComponent } from './template-component';
import type { WhatsAppLanguageCode } from './whats-app-language-code';
/**
*
* @export
* @interface ChatSendTemplateMessageCommand
*/
export interface ChatSendTemplateMessageCommand {
/**
*
* @type {WhatsAppLanguageCode}
* @memberof ChatSendTemplateMessageCommand
*/
'language'?: WhatsAppLanguageCode;
/**
*
* @type {string}
* @memberof ChatSendTemplateMessageCommand
*/
'templateId'?: string | null;
/**
*
* @type {string}
* @memberof ChatSendTemplateMessageCommand
*/
'templateName'?: string | null;
/**
*
* @type {Array<TemplateComponent>}
* @memberof ChatSendTemplateMessageCommand
*/
'components'?: Array<TemplateComponent> | null;
}