UNPKG

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.

13 lines (12 loc) 342 B
export interface IPaymentContext { /** * Request a Payment Context. Send an Payment Context request. * @param data {Object} */ request(data: any): any; /** * Get Payment Context details. Returns all the Payment Context details. * @param data {String} */ getDetails(data: any): any; }