@meeting-baas/sdk
Version:
Official SDK for Meeting BaaS API - https://meetingbaas.com
39 lines (38 loc) • 672 B
TypeScript
/**
* Meeting BaaS API
* Meeting BaaS API
*
* The version of the OpenAPI document: 1.1
*
*
* 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 { Bot2 } from './bot2';
import type { BotParam } from './bot-param';
/**
*
* @export
* @interface Bot
*/
export interface Bot {
/**
*
* @type {Bot2}
* @memberof Bot
*/
'bot': Bot2;
/**
*
* @type {number}
* @memberof Bot
*/
'duration': number;
/**
*
* @type {BotParam}
* @memberof Bot
*/
'params': BotParam;
}