@wildix/wda-insights-client > DeleteProjectionCommand
DeleteProjectionCommand class
Signature:
export declare class DeleteProjectionCommand extends DeleteProjectionCommand_base
Extends: DeleteProjectionCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WdaInsightsClient, DeleteProjectionCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, DeleteProjectionCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = { // DeleteProjectionInput
company: "STRING_VALUE",
id: "STRING_VALUE", // required
};
const command = new DeleteProjectionCommand(input);
const response = await client.send(command);
// {};