github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/MandateSepaDirectDebitWithoutCreditor.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package token 5 6 import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions" 7 8 // MandateSepaDirectDebitWithoutCreditor represents class MandateSepaDirectDebitWithoutCreditor 9 type MandateSepaDirectDebitWithoutCreditor struct { 10 BankAccountIban *definitions.BankAccountIban `json:"bankAccountIban,omitempty"` 11 CustomerContractIdentifier *string `json:"customerContractIdentifier,omitempty"` 12 Debtor *Debtor `json:"debtor,omitempty"` 13 IsRecurring *bool `json:"isRecurring,omitempty"` 14 MandateApproval *MandateApproval `json:"mandateApproval,omitempty"` 15 PreNotification *string `json:"preNotification,omitempty"` 16 } 17 18 // NewMandateSepaDirectDebitWithoutCreditor constructs a new MandateSepaDirectDebitWithoutCreditor 19 func NewMandateSepaDirectDebitWithoutCreditor() *MandateSepaDirectDebitWithoutCreditor { 20 return &MandateSepaDirectDebitWithoutCreditor{} 21 }