Compare commits

..

1 Commits

Author SHA1 Message Date
Bastian de Byl
73195a090f added ShippingError and ShippingErrors struct 2023-06-06 19:54:21 -04:00

View File

@@ -6,6 +6,15 @@ import (
"net/http" "net/http"
) )
type ShippingError struct {
Key string `json:"key"`
Message string `json:"message"`
}
type ShippingErrors struct {
Errors []ShippingError `json:"errors"`
}
type TaxShippingInfo struct { type TaxShippingInfo struct {
Fees float64 `json:"fees"` Fees float64 `json:"fees"`
Method string `json:"method"` Method string `json:"method"`