@wildix/classound-client > RefreshEsimQrCodeCommand
RefreshEsimQrCodeCommand class
Signature:
export declare class RefreshEsimQrCodeCommand extends RefreshEsimQrCodeCommand_base
Extends: RefreshEsimQrCodeCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { ClassoundClient, RefreshEsimQrCodeCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, RefreshEsimQrCodeCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // RefreshEsimQrCodeInput
companyId: "STRING_VALUE",
uid: "STRING_VALUE", // required
};
const command = new RefreshEsimQrCodeCommand(input);
const response = await client.send(command);
// { // RefreshEsimQrCodeOutput
// companyId: "STRING_VALUE", // required
// uid: "STRING_VALUE", // required
// extension: "STRING_VALUE",
// iccid: "STRING_VALUE", // required
// activationCode: "STRING_VALUE", // required
// phone: "STRING_VALUE",
// };