-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer_address.go
27 lines (26 loc) · 1.34 KB
/
customer_address.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package shopware
// CustomerAddress see:
// https://github.com/shopware/platform/blob/6.2/src/Core/Checkout/Customer/Aggregate/CustomerAddress/CustomerAddressEntity.php
type CustomerAddress struct {
Entity
CustomerID string `json:"customerId"`
CountryID string `json:"countryId"`
CountryStateID string `json:"countryStateId"`
SalutationID string `json:"salutationId"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
Zipcode string `json:"zipcode"`
City string `json:"city"`
Company string `json:"company"`
Department string `json:"department"`
Title string `json:"title"`
Street string `json:"street"`
VatID string `json:"vatId"`
PhoneNumber string `json:"phoneNumber"`
AdditionalAddressLine1 string `json:"additionalAddressLine1"`
AdditionalAddressLine2 string `json:"additionalAddressLine2"`
Country *Country `json:"country"`
CountryState *CountryState `json:"countryState"`
Salutation *Salutation `json:"salutation"`
Customer *Customer `json:"customer"`
}