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