/** * @type Money: A combination of a Currency and an amount of that Currency. * * @property currencyMnemonic: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. * - **Pattern:** /^([A-Z][A-Z][A-Z]|N\/A)$/ * * @property value: The amount of money for the given currency. * */ export type Money = { currencyMnemonic?: string; value?: number; } & { [key: string]: any; };