github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/ContactDetails.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 // ContactDetails represents class ContactDetails 7 type ContactDetails struct { 8 EmailAddress *string `json:"emailAddress,omitempty"` 9 EmailMessageType *string `json:"emailMessageType,omitempty"` 10 FaxNumber *string `json:"faxNumber,omitempty"` 11 MobilePhoneNumber *string `json:"mobilePhoneNumber,omitempty"` 12 PhoneNumber *string `json:"phoneNumber,omitempty"` 13 WorkPhoneNumber *string `json:"workPhoneNumber,omitempty"` 14 } 15 16 // NewContactDetails constructs a new ContactDetails 17 func NewContactDetails() *ContactDetails { 18 return &ContactDetails{} 19 }