@wildix/wda-history-client > GetConferenceTranscriptionTextCommand
GetConferenceTranscriptionTextCommand class
Signature:
export declare class GetConferenceTranscriptionTextCommand extends GetConferenceTranscriptionTextCommand_base
Extends: GetConferenceTranscriptionTextCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WdaHistoryClient, GetConferenceTranscriptionTextCommand } from "@wildix/wda-history-client"; // ES Modules import
// const { WdaHistoryClient, GetConferenceTranscriptionTextCommand } = require("@wildix/wda-history-client"); // CommonJS import
const client = new WdaHistoryClient(config);
const input = { // GetConferenceTranscriptionTextInput
company: "STRING_VALUE",
conferenceId: "STRING_VALUE", // required
};
const command = new GetConferenceTranscriptionTextCommand(input);
const response = await client.send(command);
// { // GetConferenceTranscriptionTextOutput
// filename: "STRING_VALUE", // required
// text: "STRING_VALUE", // required
// chunks: [ // TranscriptionTextChunkList // required
// { // TranscriptionTextChunk
// id: "STRING_VALUE", // required
// name: "STRING_VALUE", // required
// text: "STRING_VALUE", // required
// time: "STRING_VALUE", // required
// offset: Number("int"), // required
// },
// ],
// };