UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

43 lines (42 loc) 1.35 kB
import { Geolocation } from "./geolocation"; import { SensitiveMobileData } from "./sensitiveMobileData"; /** * Mobile phone is used as a payment instrument for the transaction. Information related to the mobile for the payment transaction. */ export declare class MobileData { /** * Identifies the country of a mobile phone operator. If data available. */ "MobileCountryCode"?: number; /** * Identifies the mobile phone operator inside a country. If data available. */ "MobileNetworkCode"?: number; /** * Masked Mobile Subscriber Integrated Service Digital Network. If data available. */ "MaskedMSISDN"?: number; "Geolocation"?: Geolocation | null; /** * Sensitive information related to the mobile phone, protected by CMS. SensitiveMobileData. */ "ProtectedMobileData"?: string; "SensitiveMobileData"?: SensitiveMobileData | null; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }