@wildix/wda-insights-client > ScheduleCallSummaryGenerationCommand
ScheduleCallSummaryGenerationCommand class
Signature:
export declare class ScheduleCallSummaryGenerationCommand extends ScheduleCallSummaryGenerationCommand_base
Extends: ScheduleCallSummaryGenerationCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WdaInsightsClient, ScheduleCallSummaryGenerationCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, ScheduleCallSummaryGenerationCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = { // ScheduleCallSummaryGenerationInput
company: "STRING_VALUE",
callId: "STRING_VALUE", // required
flowIndex: Number("int"), // required
locale: "STRING_VALUE",
template: "STRING_VALUE",
instance: "STRING_VALUE",
quality: "RECOMMENDED" || "MAX",
};
const command = new ScheduleCallSummaryGenerationCommand(input);
const response = await client.send(command);
// {};