github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/mandates/MandateResponse.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 // MandateResponse represents class MandateResponse 7 type MandateResponse struct { 8 Alias *string `json:"alias,omitempty"` 9 Customer *MandateCustomer `json:"customer,omitempty"` 10 CustomerReference *string `json:"customerReference,omitempty"` 11 RecurrenceType *string `json:"recurrenceType,omitempty"` 12 Status *string `json:"status,omitempty"` 13 UniqueMandateReference *string `json:"uniqueMandateReference,omitempty"` 14 } 15 16 // NewMandateResponse constructs a new MandateResponse 17 func NewMandateResponse() *MandateResponse { 18 return &MandateResponse{} 19 }