@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
32 lines (31 loc) • 768 B
TypeScript
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 discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}