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

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