@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
38 lines (37 loc) • 918 B
TypeScript
import { DeliveryAddress } from "./deliveryAddress";
import { Name } from "./name";
import { Phone } from "./phone";
export declare class DeliveryContact {
"address": DeliveryAddress;
/**
* The company name of the contact.
*/
"company"?: string;
/**
* The email address of the contact.
*/
"email"?: string;
"name": Name;
"phone"?: Phone | null;
/**
* The URL of the contact\'s website.
*/
"webAddress"?: string;
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();
}