bc-checkout-sdk
Version:
BetterCommerce's Checkout NodeJS SDK enables BC client applications to integrate with Checkout merchant API system. It publishes an interface to interact with [Checkout API](https://api-reference.checkout.com/#operation/getPaymentDetails/) endpoints.
14 lines (13 loc) • 453 B
TypeScript
import { IPaymentRequest } from "../../models/IPaymentRequest";
export interface IPayment {
/**
* Request a payment or payout. Sends a request for payment or payout.
* @param data {IPaymentRequest}
*/
request(data: IPaymentRequest): any;
/**
* Get payment details. Returns the details of the payment with the specified identifier string.
* @param data {String}
*/
getDetails(data: any): any;
}