Files
boc/vims-backend/node_modules/twilio/lib/rest/wireless/V1.d.ts
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

31 lines
1.3 KiB
TypeScript

import WirelessBase from "../WirelessBase";
import Version from "../../base/Version";
import { CommandListInstance } from "./v1/command";
import { RatePlanListInstance } from "./v1/ratePlan";
import { SimListInstance } from "./v1/sim";
import { UsageRecordListInstance } from "./v1/usageRecord";
export default class V1 extends Version {
/**
* Initialize the V1 version of Wireless
*
* @param domain - The Twilio (Twilio.Wireless) domain
*/
constructor(domain: WirelessBase);
/** commands - { Twilio.Wireless.V1.CommandListInstance } resource */
protected _commands?: CommandListInstance;
/** ratePlans - { Twilio.Wireless.V1.RatePlanListInstance } resource */
protected _ratePlans?: RatePlanListInstance;
/** sims - { Twilio.Wireless.V1.SimListInstance } resource */
protected _sims?: SimListInstance;
/** usageRecords - { Twilio.Wireless.V1.UsageRecordListInstance } resource */
protected _usageRecords?: UsageRecordListInstance;
/** Getter for commands resource */
get commands(): CommandListInstance;
/** Getter for ratePlans resource */
get ratePlans(): RatePlanListInstance;
/** Getter for sims resource */
get sims(): SimListInstance;
/** Getter for usageRecords resource */
get usageRecords(): UsageRecordListInstance;
}