UNPKG

@adyen/api-library

Version:

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

38 lines (37 loc) 936 B
import { Address } from "./address"; export declare class BillingEntity { "address"?: Address | null; /** * The email address of the billing entity. */ "email"?: string; /** * The unique identifier of the billing entity, for use as `billingEntityId` when creating an order. */ "id"?: string; /** * The unique name of the billing entity. */ "name"?: string; /** * The tax number of the billing entity. */ "taxId"?: 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(); }