@lexriver/yandex-pay
Version:
A TypeScript client for Yandex Pay API to integrate payment processing in your Node.js applications
11 lines (10 loc) • 333 B
TypeScript
import { EnumShippingMethodType } from "../enums/EnumShippingMethodType.js";
export interface ShippingPrice {
/**
* Type: string<double>
* It shouldn't include more than two decimal digits. For example: 1.12, 5.1, 10, 11.00 .
* Example: 123.45
*/
amount: string;
methodType: EnumShippingMethodType;
}