Price
Определение цены, т.е. валюты и единиц.
JSON-представление |
---|
{
"priceMicros": string,
"currency": string
} |
Поля |
---|
priceMicros | string Цена в 1/миллион базовой единицы валюты, представленная в виде строки. |
currency | string Трехбуквенный код валюты, определенный стандартом ISO 4217. См. java/com/google/common/money/CurrencyCode.java. |
Если не указано иное, контент на этой странице предоставляется по лицензии Creative Commons "С указанием авторства 4.0", а примеры кода – по лицензии Apache 2.0. Подробнее об этом написано в правилах сайта. Java – это зарегистрированный товарный знак корпорации Oracle и ее аффилированных лиц.
Последнее обновление: 2025-01-04 UTC.
[null,null,["Последнее обновление: 2025-01-04 UTC."],[[["Defines the structure for representing a price using JSON, specifying currency and units."],["Employs `priceMicros` to denote the price in one-millionth of the currency's base unit, presented as a string."],["Utilizes ISO 4217 standard for the 3-letter `currency` code, ensuring consistency and clarity in representing different currencies."]]],["The content defines a price using a JSON structure with two fields. `priceMicros` is a string representing the price in 1/million of the currency's base unit. `currency` is a string, specifying the currency's three-letter code according to ISO 4217 standards. The JSON representation uses the keys `priceMicros` and `currency` with respective string values to represent the price data.\n"]]