UNPKG

@meeting-baas/sdk

Version:

Official SDK for Meeting BaaS API - https://meetingbaas.com

114 lines (113 loc) 2.27 kB
/** * 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 { AudioFrequency } from './audio-frequency'; import type { RecordingMode } from './recording-mode'; import type { SpeechToText } from './speech-to-text'; /** * * @export * @interface BotParam2 */ export interface BotParam2 { /** * * @type {string} * @memberof BotParam2 */ 'bot_image'?: string | null; /** * * @type {string} * @memberof BotParam2 */ 'botName': string; /** * * @type {string} * @memberof BotParam2 */ 'deduplication_key'?: string | null; /** * * @type {string} * @memberof BotParam2 */ 'enter_message'?: string | null; /** * Custom data object * @type {{ [key: string]: any | undefined; }} * @memberof BotParam2 */ 'extra': { [key: string]: any | undefined; }; /** * * @type {number} * @memberof BotParam2 */ 'noone_joined_timeout'?: number | null; /** * * @type {RecordingMode} * @memberof BotParam2 */ 'recording_mode'?: RecordingMode | null; /** * * @type {SpeechToText} * @memberof BotParam2 */ 'speech_to_text'?: SpeechToText | null; /** * * @type {AudioFrequency} * @memberof BotParam2 */ 'streaming_audio_frequency'?: AudioFrequency | null; /** * * @type {string} * @memberof BotParam2 */ 'streaming_input'?: string | null; /** * * @type {string} * @memberof BotParam2 */ 'streaming_output'?: string | null; /** * * @type {number} * @memberof BotParam2 */ 'waiting_room_timeout'?: number | null; /** * * @type {string} * @memberof BotParam2 */ 'webhook_url'?: string | null; /** * * @type {string} * @memberof BotParam2 */ 'zoom_sdk_id'?: string | null; /** * * @type {string} * @memberof BotParam2 */ 'zoom_sdk_pwd'?: string | null; }