github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/AddressPersonal.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package payment 5 6 // AddressPersonal represents class AddressPersonal 7 type AddressPersonal 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 Name *PersonalName `json:"name,omitempty"` 13 State *string `json:"state,omitempty"` 14 StateCode *string `json:"stateCode,omitempty"` 15 Street *string `json:"street,omitempty"` 16 Zip *string `json:"zip,omitempty"` 17 } 18 19 // NewAddressPersonal constructs a new AddressPersonal 20 func NewAddressPersonal() *AddressPersonal { 21 return &AddressPersonal{} 22 }