github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/mandates/MandatePersonalInformation.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  // MandatePersonalInformation represents class MandatePersonalInformation
     7  type MandatePersonalInformation struct {
     8  	Name  *MandatePersonalName `json:"name,omitempty"`
     9  	Title *string              `json:"title,omitempty"`
    10  }
    11  
    12  // NewMandatePersonalInformation constructs a new MandatePersonalInformation
    13  func NewMandatePersonalInformation() *MandatePersonalInformation {
    14  	return &MandatePersonalInformation{}
    15  }