Skip to main content

@wildix/classound-client > CleanupTangoEsimOrderCommand

CleanupTangoEsimOrderCommand class

Signature:

export declare class CleanupTangoEsimOrderCommand extends CleanupTangoEsimOrderCommand_base 

Extends: CleanupTangoEsimOrderCommand_base

Example

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

import { ClassoundClient, CleanupTangoEsimOrderCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, CleanupTangoEsimOrderCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // CleanupTangoEsimOrderInput
orderId: "STRING_VALUE", // required
};
const command = new CleanupTangoEsimOrderCommand(input);
const response = await client.send(command);
// { // CleanupTangoEsimOrderOutput
// status: "CLEANED", // required
// orderId: "STRING_VALUE", // required
// simsReleased: Number("int"), // required
// steps: { // CleanupStepsMap // required
// "<keys>": "STRING_VALUE",
// },
// };