Skip to main content

@wildix/wda-insights-client > ScheduleConferencePostAnalysisCommand

ScheduleConferencePostAnalysisCommand class

Signature:

export declare class ScheduleConferencePostAnalysisCommand extends ScheduleConferencePostAnalysisCommand_base 

Extends: ScheduleConferencePostAnalysisCommand_base

Example

Use a bare-bones client and the command you need to make an API call.

import { WdaInsightsClient, ScheduleConferencePostAnalysisCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, ScheduleConferencePostAnalysisCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = { // ScheduleConferencePostAnalysisInput
company: "STRING_VALUE", // required
conferenceId: "STRING_VALUE", // required
};
const command = new ScheduleConferencePostAnalysisCommand(input);
const response = await client.send(command);
// {};