github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/product/PaymentProductDisplayHints.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  // PaymentProductDisplayHints represents class PaymentProductDisplayHints
     7  type PaymentProductDisplayHints struct {
     8  	DisplayOrder *int32  `json:"displayOrder,omitempty"`
     9  	Label        *string `json:"label,omitempty"`
    10  	Logo         *string `json:"logo,omitempty"`
    11  }
    12  
    13  // NewPaymentProductDisplayHints constructs a new PaymentProductDisplayHints
    14  func NewPaymentProductDisplayHints() *PaymentProductDisplayHints {
    15  	return &PaymentProductDisplayHints{}
    16  }