UNPKG

@adyen/api-library

Version:

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

39 lines (38 loc) 1.04 kB
import { OrderItem } from './orderItem'; export declare class TerminalOrderRequest { /** * The identification of the billing entity to use for the order. > When ordering products in Brazil, you do not need to include the `billingEntityId` in the request. */ 'billingEntityId'?: string; /** * The merchant-defined purchase order reference. */ 'customerOrderReference'?: string; /** * The products included in the order. */ 'items'?: Array<OrderItem>; /** * Type of order */ 'orderType'?: string; /** * The identification of the shipping location to use for the order. */ 'shippingLocationId'?: 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; }[]; }