Skip to content

Commit

Permalink
Include quantity in products data examples (#979)
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow authored Aug 16, 2024
1 parent 47a1fe7 commit 218c877
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ window.snowplow("trackTransaction:{trackerName}", {
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
Expand Down Expand Up @@ -549,6 +550,7 @@ trackTransaction({
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
Expand Down Expand Up @@ -585,6 +587,7 @@ window.snowplow("trackRefund:{trackerName}", {
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
Expand All @@ -610,6 +613,7 @@ trackRefund({
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
Expand Down

0 comments on commit 218c877

Please sign in to comment.