interface ITypedMoneyDraft {
    centAmount?: number;
    currencyCode: string;
    fractionDigits?: number;
    type?: string;
}

Hierarchy (View Summary)

Properties

centAmount?: number

Amount in the smallest indivisible unit of a currency.

currencyCode: string

Currency code compliant to ISO 4217.

fractionDigits?: number

Number of fraction digits for a specified money.

type?: string

Determines the type of money used.