@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
23 lines • 808 B
TypeScript
import { HlrStatuses } from './HlrStatuses';
/** Home Location Register informations. Give informations about a given cellular phone. */
export interface HlrLookupNumber {
/** HLR creation datetime */
datetime: string;
/** HLR id */
id: number;
/** MSISDN */
msisdn: string;
/** The {Mobile Country Code, Mobile Network Code} unique identifier */
operatorCode: string;
/** Has the MSISDN been ported from its original network */
ported: boolean;
/** Is the MSISDN currently reachable */
reachable: boolean;
/** Is the MSISDN currently roaming outside its natinal network */
roaming: boolean;
/** Status of the HLR request */
status: HlrStatuses;
/** Is the MSISDN valid */
valid: boolean;
}
//# sourceMappingURL=HlrLookupNumber.d.ts.map