bc-clearpay-sdk
Version:
BetterCommerce's ClearPay NodeJS SDK enables BC client applications to integrate with ClearPay merchant API system. It publishes an interface to interact with [ClearPay API v2](https://developers.clearpay.co.uk/clearpay-online/reference) endpoints.
14 lines (13 loc) • 347 B
TypeScript
export interface IOrderLine {
readonly name: string;
readonly sku: string;
readonly quantity: number;
readonly imageUrl: string;
readonly pageUrl: string;
readonly price: {
amount: number;
currency: string;
};
readonly categories: string;
readonly estimatedShipmentDate?: string;
}