github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/SepaDirectDebit.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  // SepaDirectDebit represents class TokenSepaDirectDebit
     7  type SepaDirectDebit struct {
     8  	Alias    *string                          `json:"alias,omitempty"`
     9  	Customer *CustomerTokenWithContactDetails `json:"customer,omitempty"`
    10  	Mandate  *MandateSepaDirectDebit          `json:"mandate,omitempty"`
    11  }
    12  
    13  // NewSepaDirectDebit constructs a new SepaDirectDebit
    14  func NewSepaDirectDebit() *SepaDirectDebit {
    15  	return &SepaDirectDebit{}
    16  }