Definition of a price, i.e. currency and units.

interface Price {
    currency?: null | string;
    priceMicros?: null | string;
}

Properties

currency?: null | string

3 letter Currency code, as defined by ISO 4217. See java/com/google/common/money/CurrencyCode.java

priceMicros?: null | string

Price in 1/million of the currency base unit, represented as a string.