ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface Magento2Money

    Money object returned by the Magento 2 GraphQL API. Used wherever a price value is exposed (regular, final, tier prices, etc.).

    const money: Magento2Money = {
    value: 9.9,
    currency: "USD"
    };
    interface Magento2Money {
        value: number;
        currency: string;
    }
    Index

    Properties

    Properties

    value: number

    Numeric monetary amount

    currency: string

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