From 26571a41fa1d15c8fd921a89725c41655758329c Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Mon, 13 Mar 2023 00:16:22 -0400 Subject: [PATCH] changed ShippingAddress State to Province --- snipcart/webhook.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snipcart/webhook.go b/snipcart/webhook.go index 8ee55ef..31286ce 100644 --- a/snipcart/webhook.go +++ b/snipcart/webhook.go @@ -11,7 +11,7 @@ type SnipcartShippingAddress struct { City string `json:"city"` Country string `json:"country"` PostalCode string `json:"postalCode"` - State string `json:"province"` + Province string `json:"province"` Phone string `json:"phone"` VatNumber string `json:"vatNumber,omitempty"` }