UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

20 lines 802 B
import { PaymentAcceptanceDiscount } from './paymentAcceptanceDiscount'; import { PaymentAcceptanceProduct } from './paymentAcceptanceProduct'; import { PaymentAcceptanceSeller } from './paymentAcceptanceSeller'; import { PaymentAcceptanceShipping } from './paymentAcceptanceShipping'; export interface PaymentAcceptancePurchaseOrder { discount?: PaymentAcceptanceDiscount; products?: Array<PaymentAcceptanceProduct>; sellers?: Array<PaymentAcceptanceSeller>; shipping?: PaymentAcceptanceShipping; type?: string; } export declare namespace PaymentAcceptancePurchaseOrder { const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=paymentAcceptancePurchaseOrder.d.ts.map