ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface EpagesMoney

    An ePages money value: a numeric amount plus its ISO currency code.

    interface EpagesMoney {
        taxType?: string;
        formatted?: string;
        amount: number;
        currency: string;
    }
    Index

    Properties

    taxType?: string

    Tax treatment of the amount (e.g. "GROSS").

    formatted?: string

    Preformatted, localized price string (e.g. "14,16 €").

    amount: number

    Numeric amount (e.g. 14.16).

    currency: string

    ISO currency code (e.g. "EUR").