@signalwire/compatibility-api
Version:
SignalWire Compatibility API
47 lines (41 loc) • 1.62 kB
TypeScript
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
import Supersim = require('../Supersim');
import Version = require('../../base/Version');
import { EsimProfileList } from './v1/esimProfile';
import { EsimProfileListInstance } from './v1/esimProfile';
import { FleetList } from './v1/fleet';
import { FleetListInstance } from './v1/fleet';
import { IpCommandList } from './v1/ipCommand';
import { IpCommandListInstance } from './v1/ipCommand';
import { NetworkAccessProfileList } from './v1/networkAccessProfile';
import { NetworkAccessProfileListInstance } from './v1/networkAccessProfile';
import { NetworkList } from './v1/network';
import { NetworkListInstance } from './v1/network';
import { SimList } from './v1/sim';
import { SimListInstance } from './v1/sim';
import { SmsCommandList } from './v1/smsCommand';
import { SmsCommandListInstance } from './v1/smsCommand';
import { UsageRecordList } from './v1/usageRecord';
import { UsageRecordListInstance } from './v1/usageRecord';
declare class V1 extends Version {
/**
* Initialize the V1 version of Supersim
*
* @param domain - The twilio domain
*/
constructor(domain: Supersim);
readonly esimProfiles: EsimProfileListInstance;
readonly fleets: FleetListInstance;
readonly ipCommands: IpCommandListInstance;
readonly networkAccessProfiles: NetworkAccessProfileListInstance;
readonly networks: NetworkListInstance;
readonly sims: SimListInstance;
readonly smsCommands: SmsCommandListInstance;
readonly usageRecords: UsageRecordListInstance;
}
export = V1;