Source: factory/priceCurrency.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
 * price currency
 * The currency (in 3-letter ISO 4217 format) of the price or a price component,
 * when attached to PriceSpecification and its subtypes.
 */
var PriceCurrency;
(function (PriceCurrency) {
    PriceCurrency["JPY"] = "JPY";
})(PriceCurrency || (PriceCurrency = {}));
exports.default = PriceCurrency;