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.
61 lines (60 loc) • 1.24 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.
*/
/**
*
* @export
* @interface ActionParameters
*/
export interface ActionParameters {
/**
*
* @type {string}
* @memberof ActionParameters
*/
'flow_id'?: string | null;
/**
*
* @type {string}
* @memberof ActionParameters
*/
'flow_token'?: string | null;
/**
*
* @type {string}
* @memberof ActionParameters
*/
'flow_cta'?: string | null;
/**
*
* @type {string}
* @memberof ActionParameters
*/
'flow_action'?: string | null;
/**
*
* @type {string}
* @memberof ActionParameters
*/
'flow_message_version'?: string | null;
/**
*
* @type {string}
* @memberof ActionParameters
*/
'mode'?: string | null;
/**
*
* @type {any}
* @memberof ActionParameters
*/
'flow_action_payload'?: any | null;
}