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