github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/product/ValueMappingElement.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  // ValueMappingElement represents class ValueMappingElement
     7  type ValueMappingElement struct {
     8  	DisplayElements *[]PaymentProductFieldDisplayElement `json:"displayElements,omitempty"`
     9  	// Deprecated: Use displayElements instead with ID 'displayName'
    10  	DisplayName     *string                              `json:"displayName,omitempty"`
    11  	Value           *string                              `json:"value,omitempty"`
    12  }
    13  
    14  // NewValueMappingElement constructs a new ValueMappingElement
    15  func NewValueMappingElement() *ValueMappingElement {
    16  	return &ValueMappingElement{}
    17  }