interface HighPrecisionMoney {
    centAmount: number;
    currencyCode: string;
    fractionDigits?: number;
    preciseAmount: number;
    type: "highPrecision";
}

Properties

centAmount: number
currencyCode: string

The currency code compliant to ISO 4217.

fractionDigits?: number
preciseAmount: number
type: "highPrecision"