Interface Currency

interface Currency {
    code: null | string;
    format: CurrencyFormat;
    name: null | string;
    name_native: null | string;
    plural: null | string;
    plural_native: null | string;
    symbol: null | string;
    symbol_native: null | string;
}

Properties

code: null | string
name: null | string
name_native: null | string
plural: null | string
plural_native: null | string
symbol: null | string
symbol_native: null | string