/**
 * 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 { BotWithParams } from './bot-with-params';
import type { Transcript } from './transcript';
/**
 *
 * @export
 * @interface BotData
 */
export interface BotData {
    /**
     *
     * @type {BotWithParams}
     * @memberof BotData
     */
    'bot': BotWithParams;
    /**
     *
     * @type {Array<Transcript>}
     * @memberof BotData
     */
    'transcripts': Array<Transcript>;
}
