UNPKG

@lexriver/yandex-pay

Version:

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

18 lines (17 loc) 359 B
export interface ItemQuantity { /** * Product quantity in the order * @example "123.45" */ count: string; /** * Maximum available product quantity * @example "123.45" */ available?: string; /** * Name of measurement units, for example, "kg" or "pcs" * Max length: 2048 */ label?: string; }