Function trackCheckoutStart

  • Tracks the initiation of a checkout process.

    Parameters

    • cart: Cart

      Cart details.

    Returns void

    Example

    FohrTracking.trackCheckoutStart({
    total: 95.00,
    items: [
    {
    id: 'P1',
    price: 15.00,
    quantity: 1
    },
    {
    id: 'P2',
    price: 20.00,
    quantity: 4
    }
    ]
    })

Generated using TypeDoc