From b586a3184c7603cf8cd996a558315e486b57821b Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Fri, 11 Aug 2023 11:29:15 -0400 Subject: [PATCH] added TotalTaxes to Order --- snipcart/snipcart.go | 1 + 1 file changed, 1 insertion(+) diff --git a/snipcart/snipcart.go b/snipcart/snipcart.go index a8dc71f..95bf470 100644 --- a/snipcart/snipcart.go +++ b/snipcart/snipcart.go @@ -43,6 +43,7 @@ type Order struct { Currency string `json:"currency,omitempty"` Total float64 `json:"grandTotal,omitempty"` TotalTaxable float64 `json:"taxableTotal,omitempty"` + TotalTaxes float64 `json:"taxesTotal,omitempty"` Status string `json:"status"` TotalWeight float64 `json:"totalWeight"` ShippingAddress Address `json:"shippingAddress,omitempty"`