github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/SepaDirectDebitPaymentProduct771SpecificInput.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  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/mandates"
     7  
     8  // SepaDirectDebitPaymentProduct771SpecificInput represents class SepaDirectDebitPaymentProduct771SpecificInput
     9  type SepaDirectDebitPaymentProduct771SpecificInput struct {
    10  	ExistingUniqueMandateReference *string                              `json:"existingUniqueMandateReference,omitempty"`
    11  	Mandate                        *mandates.CreateMandateWithReturnURL `json:"mandate,omitempty"`
    12  	// Deprecated: Use existingUniqueMandateReference or mandate.uniqueMandateReference instead
    13  	MandateReference               *string                              `json:"mandateReference,omitempty"`
    14  }
    15  
    16  // NewSepaDirectDebitPaymentProduct771SpecificInput constructs a new SepaDirectDebitPaymentProduct771SpecificInput
    17  func NewSepaDirectDebitPaymentProduct771SpecificInput() *SepaDirectDebitPaymentProduct771SpecificInput {
    18  	return &SepaDirectDebitPaymentProduct771SpecificInput{}
    19  }