github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/NonSepaDirectDebitPaymentMethodSpecificInput.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  // NonSepaDirectDebitPaymentMethodSpecificInput represents class NonSepaDirectDebitPaymentMethodSpecificInput
     7  type NonSepaDirectDebitPaymentMethodSpecificInput struct {
     8  	DateCollect                       *string                                           `json:"dateCollect,omitempty"`
     9  	DirectDebitText                   *string                                           `json:"directDebitText,omitempty"`
    10  	IsRecurring                       *bool                                             `json:"isRecurring,omitempty"`
    11  	PaymentProduct705SpecificInput    *NonSepaDirectDebitPaymentProduct705SpecificInput `json:"paymentProduct705SpecificInput,omitempty"`
    12  	PaymentProduct730SpecificInput    *NonSepaDirectDebitPaymentProduct730SpecificInput `json:"paymentProduct730SpecificInput,omitempty"`
    13  	PaymentProductID                  *int32                                            `json:"paymentProductId,omitempty"`
    14  	RecurringPaymentSequenceIndicator *string                                           `json:"recurringPaymentSequenceIndicator,omitempty"`
    15  	RequiresApproval                  *bool                                             `json:"requiresApproval,omitempty"`
    16  	Token                             *string                                           `json:"token,omitempty"`
    17  	Tokenize                          *bool                                             `json:"tokenize,omitempty"`
    18  }
    19  
    20  // NewNonSepaDirectDebitPaymentMethodSpecificInput constructs a new NonSepaDirectDebitPaymentMethodSpecificInput
    21  func NewNonSepaDirectDebitPaymentMethodSpecificInput() *NonSepaDirectDebitPaymentMethodSpecificInput {
    22  	return &NonSepaDirectDebitPaymentMethodSpecificInput{}
    23  }