github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/MandateSepaDirectDebit.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  // MandateSepaDirectDebit represents class MandateSepaDirectDebit
     9  type MandateSepaDirectDebit struct {
    10  	BankAccountIban            *definitions.BankAccountIban `json:"bankAccountIban,omitempty"`
    11  	Creditor                   *Creditor                    `json:"creditor,omitempty"`
    12  	CustomerContractIdentifier *string                      `json:"customerContractIdentifier,omitempty"`
    13  	Debtor                     *Debtor                      `json:"debtor,omitempty"`
    14  	IsRecurring                *bool                        `json:"isRecurring,omitempty"`
    15  	MandateApproval            *MandateApproval             `json:"mandateApproval,omitempty"`
    16  	MandateID                  *string                      `json:"mandateId,omitempty"`
    17  	PreNotification            *string                      `json:"preNotification,omitempty"`
    18  }
    19  
    20  // NewMandateSepaDirectDebit constructs a new MandateSepaDirectDebit
    21  func NewMandateSepaDirectDebit() *MandateSepaDirectDebit {
    22  	return &MandateSepaDirectDebit{}
    23  }