github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/mandates/CreateMandateWithReturnURL.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package mandates
     5  
     6  // CreateMandateWithReturnURL represents class CreateMandateWithReturnUrl
     7  type CreateMandateWithReturnURL struct {
     8  	Alias                  *string          `json:"alias,omitempty"`
     9  	Customer               *MandateCustomer `json:"customer,omitempty"`
    10  	CustomerReference      *string          `json:"customerReference,omitempty"`
    11  	Language               *string          `json:"language,omitempty"`
    12  	RecurrenceType         *string          `json:"recurrenceType,omitempty"`
    13  	ReturnURL              *string          `json:"returnUrl,omitempty"`
    14  	SignatureType          *string          `json:"signatureType,omitempty"`
    15  	UniqueMandateReference *string          `json:"uniqueMandateReference,omitempty"`
    16  }
    17  
    18  // NewCreateMandateWithReturnURL constructs a new CreateMandateWithReturnURL
    19  func NewCreateMandateWithReturnURL() *CreateMandateWithReturnURL {
    20  	return &CreateMandateWithReturnURL{}
    21  }