UNPKG

@meeting-baas/sdk

Version:

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

112 lines (111 loc) 2.19 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 BotParam3 */ export interface BotParam3 { /** * * @type {string} * @memberof BotParam3 */ 'bot_image'?: string | null; /** * * @type {string} * @memberof BotParam3 */ 'bot_name'?: string | null; /** * * @type {string} * @memberof BotParam3 */ 'deduplication_key'?: string | null; /** * * @type {string} * @memberof BotParam3 */ 'enter_message'?: string | null; /** * * @type {any} * @memberof BotParam3 */ 'extra'?: any; /** * * @type {number} * @memberof BotParam3 */ 'noone_joined_timeout'?: number | null; /** * * @type {RecordingMode} * @memberof BotParam3 */ 'recording_mode'?: RecordingMode | null; /** * * @type {SpeechToText} * @memberof BotParam3 */ 'speech_to_text'?: SpeechToText | null; /** * * @type {AudioFrequency} * @memberof BotParam3 */ 'streaming_audio_frequency'?: AudioFrequency | null; /** * * @type {string} * @memberof BotParam3 */ 'streaming_input'?: string | null; /** * * @type {string} * @memberof BotParam3 */ 'streaming_output'?: string | null; /** * * @type {number} * @memberof BotParam3 */ 'waiting_room_timeout'?: number | null; /** * * @type {string} * @memberof BotParam3 */ 'webhook_url'?: string | null; /** * * @type {string} * @memberof BotParam3 */ 'zoom_sdk_id'?: string | null; /** * * @type {string} * @memberof BotParam3 */ 'zoom_sdk_pwd'?: string | null; }