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

Properties

centAmount: number
currencyCode: string

The currency code compliant to ISO 4217.

fractionDigits?: number
type: "centPrecision"