@airwallex/node-sdk
Version:
Airwallex Node.js SDK
15 lines • 1.28 kB
TypeScript
import { CustomRequestOptions } from '../../common/request';
import { PaymentAcceptanceFundsSplitReversal } from '../../model/paymentAcceptanceFundsSplitReversal';
import { PaymentAcceptanceFundsSplitReversalCreateRequestRaw } from '../../model/paymentAcceptanceFundsSplitReversalCreateRequestRaw';
import { PaymentAcceptanceListResponseOfPaymentAcceptanceFundsSplitReversal } from '../../model/paymentAcceptanceListResponseOfPaymentAcceptanceFundsSplitReversal';
export interface ParamsPaymentAcceptanceFundsSplitReversalsApilist {
funds_split_id: string;
page_num?: number;
page_size?: number;
}
export declare class PaymentAcceptanceFundsSplitReversalsApi {
create(funds_split_reversal_create_request: PaymentAcceptanceFundsSplitReversalCreateRequestRaw, x_on_behalf_of?: string, options?: CustomRequestOptions): Promise<PaymentAcceptanceFundsSplitReversal>;
list({ funds_split_id, page_num, page_size }: ParamsPaymentAcceptanceFundsSplitReversalsApilist, options?: CustomRequestOptions): Promise<PaymentAcceptanceListResponseOfPaymentAcceptanceFundsSplitReversal>;
retrieveFundsSplitReversal(id: string, options?: CustomRequestOptions): Promise<PaymentAcceptanceFundsSplitReversal>;
}
//# sourceMappingURL=paymentAcceptanceFundsSplitReversalsApi.d.ts.map