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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package payment
     5  
     6  // RedirectPaymentMethodSpecificInputBase represents class RedirectPaymentMethodSpecificInputBase
     7  type RedirectPaymentMethodSpecificInputBase struct {
     8  	ExpirationPeriod                  *int32                                       `json:"expirationPeriod,omitempty"`
     9  	PaymentProduct4101SpecificInput   *RedirectPaymentProduct4101SpecificInputBase `json:"paymentProduct4101SpecificInput,omitempty"`
    10  	PaymentProduct840SpecificInput    *RedirectPaymentProduct840SpecificInputBase  `json:"paymentProduct840SpecificInput,omitempty"`
    11  	PaymentProductID                  *int32                                       `json:"paymentProductId,omitempty"`
    12  	RecurringPaymentSequenceIndicator *string                                      `json:"recurringPaymentSequenceIndicator,omitempty"`
    13  	RequiresApproval                  *bool                                        `json:"requiresApproval,omitempty"`
    14  	Token                             *string                                      `json:"token,omitempty"`
    15  	Tokenize                          *bool                                        `json:"tokenize,omitempty"`
    16  }
    17  
    18  // NewRedirectPaymentMethodSpecificInputBase constructs a new RedirectPaymentMethodSpecificInputBase
    19  func NewRedirectPaymentMethodSpecificInputBase() *RedirectPaymentMethodSpecificInputBase {
    20  	return &RedirectPaymentMethodSpecificInputBase{}
    21  }