added ShippingError and ShippingErrors struct

This commit is contained in:
Bastian de Byl
2023-06-06 19:54:21 -04:00
parent db81f246bf
commit 73195a090f

View File

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