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

Properties

centAmount: number
currencyCode: string

Currency code compliant to ISO 4217.

fractionDigits: number
type: string