UNPKG

@lexriver/yandex-pay

Version:

A TypeScript client for Yandex Pay API to integrate payment processing in your Node.js applications

17 lines (16 loc) 371 B
import { CartTotal } from "./CartTotal.js"; import { RenderedCartItem } from "./RenderedCartItem.js"; export interface RenderedCart { /** * Cart items that the customer pays for. */ items: RenderedCartItem[]; /** * Final order cost. */ total: CartTotal; /** * Cart ID passed by the merchant */ externalId?: string; }