github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/CompanyInformation.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 // CompanyInformation represents class CompanyInformation 7 type CompanyInformation struct { 8 Name *string `json:"name,omitempty"` 9 VatNumber *string `json:"vatNumber,omitempty"` 10 } 11 12 // NewCompanyInformation constructs a new CompanyInformation 13 func NewCompanyInformation() *CompanyInformation { 14 return &CompanyInformation{} 15 }