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