This draft type is the alternative to Money.

interface CentPrecisionMoneyDraft {
    centAmount: number;
    currencyCode: string;
    fractionDigits?: number;
    type: "centPrecision";
}

Properties

centAmount: number

Amount in the smallest indivisible unit of a currency, such as:

* Cents for EUR and USD, pence for GBP, or centime for CHF (5 CHF is specified as `500`).
* The value in the major unit for currencies without minor units, like JPY (5 JPY is specified as `5`).
currencyCode: string

Currency code compliant to ISO 4217.

fractionDigits?: number

This field is optional for cent precision. If provided, it must be equal to the default number of fraction digits for the specified currency.

type: "centPrecision"

Generated using TypeDoc