@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
40 lines (39 loc) • 1.1 kB
TypeScript
export declare class PhoneNumber {
/**
* The two-character ISO-3166-1 alpha-2 country code of the phone number. For example, **US** or **NL**.
*/
"phoneCountryCode"?: string;
/**
* The phone number. The inclusion of the phone number country code is not necessary.
*/
"phoneNumber"?: string;
/**
* The type of the phone number. Possible values: **Landline**, **Mobile**, **SIP**, **Fax**.
*/
"phoneType"?: PhoneNumber.PhoneTypeEnum;
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();
}
export declare namespace PhoneNumber {
enum PhoneTypeEnum {
Fax = "Fax",
Landline = "Landline",
Mobile = "Mobile",
Sip = "SIP"
}
}