github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/product/PaymentProductFieldDisplayElement.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  // PaymentProductFieldDisplayElement represents class PaymentProductFieldDisplayElement
     7  type PaymentProductFieldDisplayElement struct {
     8  	ID    *string `json:"id,omitempty"`
     9  	Label *string `json:"label,omitempty"`
    10  	Type  *string `json:"type,omitempty"`
    11  	Value *string `json:"value,omitempty"`
    12  }
    13  
    14  // NewPaymentProductFieldDisplayElement constructs a new PaymentProductFieldDisplayElement
    15  func NewPaymentProductFieldDisplayElement() *PaymentProductFieldDisplayElement {
    16  	return &PaymentProductFieldDisplayElement{}
    17  }