From 193b59c7c889d61d2e0e243a44cc77561525fdfb Mon Sep 17 00:00:00 2001 From: Brandur Date: Fri, 17 Aug 2018 16:03:40 -0700 Subject: [PATCH] Rename `IssuingCardShipping`'s `Eta` to `ETA` to fit conventions Convention throughout Go and this library is to upcase field names that are acronyms. Here we do that for "ETA". We are changing its type anyway in #661, so it's a good time to make this change. --- issuing_card.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/issuing_card.go b/issuing_card.go index 6326a051a1..95c8bc7b36 100644 --- a/issuing_card.go +++ b/issuing_card.go @@ -110,7 +110,7 @@ type IssuingCardAuthorizationControls struct { type IssuingCardShipping struct { Address *Address `json:"address"` Carrier string `json:"carrier"` - Eta int64 `json:"eta"` + ETA int64 `json:"eta"` Name string `json:"name"` Phone string `json:"phone"` Status IssuingCardShippingStatus `json:"status"`