49 lines
977 B
TypeScript
49 lines
977 B
TypeScript
export namespace NosApi {
|
|
export type ActivateResponseOK = {
|
|
/**
|
|
The unique physical subscriber identifier:
|
|
Cellular - the ICCID
|
|
Non - IP - the EUI
|
|
Satellite - the IMEI
|
|
*/
|
|
physicalId: string,
|
|
|
|
/**
|
|
example: 447000000001
|
|
The unique network subscriber identifier:
|
|
|
|
Cellular subscriber - the MSISDN
|
|
Non - IP subscriber - the Device EUI
|
|
Satellite subscriber - the Subscription ID
|
|
*/
|
|
subscriberId: string,
|
|
|
|
/**
|
|
example: 9999
|
|
If the subscriber uses Circuit Switched Data(CSD), this field displays its data number.If the subscriber does not use CSD, this field is null.
|
|
*/
|
|
dataNumber: string
|
|
|
|
/**
|
|
example: 172.0.0.1
|
|
The subscriber IP address.
|
|
*/
|
|
ip: string
|
|
|
|
/**
|
|
example: 234150000000001
|
|
The subscriber IMSI.
|
|
*/
|
|
imsi: string
|
|
}
|
|
|
|
export type ActivateResponseError = {
|
|
error: {
|
|
children: string,
|
|
code: string,
|
|
messafe: string
|
|
}
|
|
|
|
}
|
|
}
|