From c18376739b2154704c8bedb1233fb201a0e62552 Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Mon, 3 Jul 2023 13:31:26 -0400 Subject: [PATCH] added TotalTaxable to Order --- snipcart/snipcart.go | 1 + 1 file changed, 1 insertion(+) diff --git a/snipcart/snipcart.go b/snipcart/snipcart.go index c3fd976..587871f 100644 --- a/snipcart/snipcart.go +++ b/snipcart/snipcart.go @@ -41,6 +41,7 @@ type Order struct { Subtotal float64 `json:"subtotal,omitempty"` Currency string `json:"currency,omitempty"` Total float64 `json:"grandTotal,omitempty"` + TotalTaxable float64 `json:"taxableTotal,omitempty"` Status string `json:"status"` TotalWeight float64 `json:"totalWeight"` ShippingAddress Address `json:"shippingAddress,omitempty"`