github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/hostedcheckout/PaymentProductFiltersHostedCheckout.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package hostedcheckout
     5  
     6  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // PaymentProductFiltersHostedCheckout represents class PaymentProductFiltersHostedCheckout
     9  type PaymentProductFiltersHostedCheckout struct {
    10  	Exclude    *definitions.PaymentProductFilter `json:"exclude,omitempty"`
    11  	RestrictTo *definitions.PaymentProductFilter `json:"restrictTo,omitempty"`
    12  	TokensOnly *bool                             `json:"tokensOnly,omitempty"`
    13  }
    14  
    15  // NewPaymentProductFiltersHostedCheckout constructs a new PaymentProductFiltersHostedCheckout
    16  func NewPaymentProductFiltersHostedCheckout() *PaymentProductFiltersHostedCheckout {
    17  	return &PaymentProductFiltersHostedCheckout{}
    18  }