github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/Address.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package definitions 5 6 // Address represents class Address 7 type Address struct { 8 AdditionalInfo *string `json:"additionalInfo,omitempty"` 9 City *string `json:"city,omitempty"` 10 CountryCode *string `json:"countryCode,omitempty"` 11 HouseNumber *string `json:"houseNumber,omitempty"` 12 State *string `json:"state,omitempty"` 13 StateCode *string `json:"stateCode,omitempty"` 14 Street *string `json:"street,omitempty"` 15 Zip *string `json:"zip,omitempty"` 16 } 17 18 // NewAddress constructs a new Address 19 func NewAddress() *Address { 20 return &Address{} 21 }