UNPKG

@meeting-baas/sdk

Version:

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

38 lines (37 loc) 885 B
/** * 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'; /** * WebSocket streams for 16 kHz audio. Input stream receives audio sent to the bot. Output stream receives audio from the bot. * @export * @interface JoinRequestStreaming */ export interface JoinRequestStreaming { /** * * @type {AudioFrequency} * @memberof JoinRequestStreaming */ 'audio_frequency'?: AudioFrequency; /** * * @type {string} * @memberof JoinRequestStreaming */ 'input'?: string; /** * * @type {string} * @memberof JoinRequestStreaming */ 'output'?: string; }