github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/mandates/MandateCustomer.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  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // MandateCustomer represents class MandateCustomer
     9  type MandateCustomer struct {
    10  	BankAccountIban     *definitions.BankAccountIban `json:"bankAccountIban,omitempty"`
    11  	CompanyName         *string                      `json:"companyName,omitempty"`
    12  	ContactDetails      *MandateContactDetails       `json:"contactDetails,omitempty"`
    13  	MandateAddress      *MandateAddress              `json:"mandateAddress,omitempty"`
    14  	PersonalInformation *MandatePersonalInformation  `json:"personalInformation,omitempty"`
    15  }
    16  
    17  // NewMandateCustomer constructs a new MandateCustomer
    18  func NewMandateCustomer() *MandateCustomer {
    19  	return &MandateCustomer{}
    20  }