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