diff options
Diffstat (limited to 'ship.go')
| -rw-r--r-- | ship.go | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -14,10 +14,13 @@ const ( ) type ShippingAddress struct { - City string `json:"city"` // Lübeck - CountryCode string `json:"country_code"` // DE - PostCode string `json:"postcode"` // 23552 + Name string `json:"name"` + Phone string `json:"phone_number"` + CountryCode string `json:"country_code"` + PostCode string `json:"postcode"` StateCode string `json:"state_code"` - Street1 string `json:"street1"` // Holstenstr. 40 - Phone string `json:"phone_number"` // 844-212-0689 + City string `json:"city"` + Street1 string `json:"street1"` + Street2 string `json:"street2"` + IsBusiness bool `json:"is_business"` } |