@airwallex/node-sdk
Version:
Airwallex Node.js SDK
22 lines • 974 B
TypeScript
import { PaymentAcceptanceDiscount } from './paymentAcceptanceDiscount';
import { PaymentAcceptanceProduct } from './paymentAcceptanceProduct';
import { PaymentAcceptanceSeller } from './paymentAcceptanceSeller';
import { PaymentAcceptanceShippingCreate } from './paymentAcceptanceShippingCreate';
import { PaymentAcceptanceSupplierDetails } from './paymentAcceptanceSupplierDetails';
export interface PaymentAcceptancePurchaseOrderCreate {
discount?: PaymentAcceptanceDiscount;
products?: Array<PaymentAcceptanceProduct>;
sellers?: Array<PaymentAcceptanceSeller>;
shipping?: PaymentAcceptanceShippingCreate;
supplier?: PaymentAcceptanceSupplierDetails;
type?: string;
}
export declare namespace PaymentAcceptancePurchaseOrderCreate {
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=paymentAcceptancePurchaseOrderCreate.d.ts.map