github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/mandates/CreateMandateBase.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  // CreateMandateBase represents class CreateMandateBase
     7  type CreateMandateBase 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  	SignatureType          *string          `json:"signatureType,omitempty"`
    14  	UniqueMandateReference *string          `json:"uniqueMandateReference,omitempty"`
    15  }
    16  
    17  // NewCreateMandateBase constructs a new CreateMandateBase
    18  func NewCreateMandateBase() *CreateMandateBase {
    19  	return &CreateMandateBase{}
    20  }