@wildix/classound-client > GetEsimCountCommand
GetEsimCountCommand class
Signature:
export declare class GetEsimCountCommand extends GetEsimCountCommand_base
Extends: GetEsimCountCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { ClassoundClient, GetEsimCountCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, GetEsimCountCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // GetEsimCountInput
companyId: "STRING_VALUE",
};
const command = new GetEsimCountCommand(input);
const response = await client.send(command);
// { // GetEsimCountOutput
// companyId: "STRING_VALUE", // required
// companyName: "STRING_VALUE",
// available: Number("int"), // required
// total: Number("int"), // required
// allocated: Number("int"), // required
// active: Number("int"), // required
// };