UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

20 lines 856 B
import { PaymentAcceptanceDiscountUpdate } from './paymentAcceptanceDiscountUpdate'; import { PaymentAcceptanceProduct } from './paymentAcceptanceProduct'; import { PaymentAcceptanceSeller } from './paymentAcceptanceSeller'; import { PaymentAcceptanceShippingUpdate } from './paymentAcceptanceShippingUpdate'; export interface PaymentAcceptancePurchaseOrderUpdate { discount?: PaymentAcceptanceDiscountUpdate; products?: Array<PaymentAcceptanceProduct>; sellers?: Array<PaymentAcceptanceSeller>; shipping?: PaymentAcceptanceShippingUpdate; type?: string; } export declare namespace PaymentAcceptancePurchaseOrderUpdate { const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=paymentAcceptancePurchaseOrderUpdate.d.ts.map