react-native-firework-sdk
    Preparing search index...

    Interface TrackPurchaseParameters

    interface TrackPurchaseParameters {
        additionalInfo?: { [key: string]: string };
        countryCode?: string;
        currencyCode?: string;
        orderId: string;
        products?: PurchaseProduct[];
        shippingPrice?: number;
        subtotal?: number;
        value?: number;
    }
    Index

    Properties

    additionalInfo?: { [key: string]: string }

    Any additional information associated to the purchase. Reserved keys: order_id, value, currency, country. Any values passed in the additionalInfo that use a reserved key will be ignored.

    countryCode?: string

    The country code of the purchase.

    currencyCode?: string

    The currency code of the purchase value.

    orderId: string

    A unique identifier for the user's order.

    products?: PurchaseProduct[]

    The products of the order.

    shippingPrice?: number

    The shipping price of the order.

    subtotal?: number

    The subtotal of the order.

    value?: number

    The value of the order.