Skip to main content

@wildix/classound-client > ListEsimBundlesCommand

ListEsimBundlesCommand class

Signature:

export declare class ListEsimBundlesCommand extends ListEsimBundlesCommand_base

Extends: ListEsimBundlesCommand_base

Example

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

import { ClassoundClient, ListEsimBundlesCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, ListEsimBundlesCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // ListEsimBundlesInput
companyId: "STRING_VALUE",
};
const command = new ListEsimBundlesCommand(input);
const response = await client.send(command);
// { // ListEsimBundlesOutput
// bundles: [ // EsimBundleCountList // required
// { // EsimBundleCount
// bundle: "PLAN-VC-MSG-2G" || "PLAN-VC-MSG-4G" || "PLAN-VC-MSG-10G" || "PLAN-VC-MSG-20G" || "PLAN-VC-MSG-UNLTD" || "PLAN-VC-MSG-BKGND", // required
// available: Number("int"), // required
// active: Number("int"), // required
// },
// ],
// };