github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/product/PaymentProductField.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package product 5 6 // PaymentProductField represents class PaymentProductField 7 type PaymentProductField struct { 8 DataRestrictions *PaymentProductFieldDataRestrictions `json:"dataRestrictions,omitempty"` 9 DisplayHints *PaymentProductFieldDisplayHints `json:"displayHints,omitempty"` 10 ID *string `json:"id,omitempty"` 11 Type *string `json:"type,omitempty"` 12 UsedForLookup *bool `json:"usedForLookup,omitempty"` 13 } 14 15 // NewPaymentProductField constructs a new PaymentProductField 16 func NewPaymentProductField() *PaymentProductField { 17 return &PaymentProductField{} 18 }