github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/Merchant.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 // Merchant represents class Merchant 7 type Merchant struct { 8 ConfigurationID *string `json:"configurationId,omitempty"` 9 ContactWebsiteURL *string `json:"contactWebsiteUrl,omitempty"` 10 Seller *Seller `json:"seller,omitempty"` 11 WebsiteURL *string `json:"websiteUrl,omitempty"` 12 } 13 14 // NewMerchant constructs a new Merchant 15 func NewMerchant() *Merchant { 16 return &Merchant{} 17 }