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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package payment
     5  
     6  // TrustlyBankAccount represents class TrustlyBankAccount
     7  type TrustlyBankAccount struct {
     8  	AccountLastDigits          *string `json:"accountLastDigits,omitempty"`
     9  	BankName                   *string `json:"bankName,omitempty"`
    10  	Clearinghouse              *string `json:"clearinghouse,omitempty"`
    11  	PersonIdentificationNumber *string `json:"personIdentificationNumber,omitempty"`
    12  }
    13  
    14  // NewTrustlyBankAccount constructs a new TrustlyBankAccount
    15  func NewTrustlyBankAccount() *TrustlyBankAccount {
    16  	return &TrustlyBankAccount{}
    17  }