@meeting-baas/sdk
Version:
Official SDK for Meeting BaaS API - https://meetingbaas.com
38 lines (37 loc) • 753 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 { SpeechToText } from './speech-to-text';
/**
*
* @export
* @interface RetranscribeBody
*/
export interface RetranscribeBody {
/**
*
* @type {string}
* @memberof RetranscribeBody
*/
'botUuid': string;
/**
*
* @type {SpeechToText}
* @memberof RetranscribeBody
*/
'speech_to_text'?: SpeechToText | null;
/**
*
* @type {string}
* @memberof RetranscribeBody
*/
'webhook_url'?: string | null;
}