@wildix/wda-insights-client > GetConferenceTimeFramesCommand
GetConferenceTimeFramesCommand class
Signature:
export declare class GetConferenceTimeFramesCommand extends GetConferenceTimeFramesCommand_base
Extends: GetConferenceTimeFramesCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WdaInsightsClient, GetConferenceTimeFramesCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, GetConferenceTimeFramesCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = { // GetConferenceTimeFramesInput
company: "STRING_VALUE",
conferenceId: "STRING_VALUE", // required
locale: "STRING_VALUE",
template: "STRING_VALUE",
instance: "STRING_VALUE",
quality: "RECOMMENDED" || "MAX",
};
const command = new GetConferenceTimeFramesCommand(input);
const response = await client.send(command);
// { // GetConferenceTimeFramesOutput
// timeFrames: [ // ConferenceTimeFramesList
// { // ConferenceTimeFramesListItem
// jid: "STRING_VALUE", // required
// frames: [ // ConferenceTimeFramesChunkList // required
// { // ConferenceTimeFramesChunk
// start: Number("long"), // required
// end: Number("long"), // required
// },
// ],
// },
// ],
// };