github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/BankAccountBban.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package definitions 5 6 // BankAccountBban represents class BankAccountBban 7 type BankAccountBban struct { 8 AccountHolderName *string `json:"accountHolderName,omitempty"` 9 AccountNumber *string `json:"accountNumber,omitempty"` 10 BankCode *string `json:"bankCode,omitempty"` 11 BankName *string `json:"bankName,omitempty"` 12 BranchCode *string `json:"branchCode,omitempty"` 13 CheckDigit *string `json:"checkDigit,omitempty"` 14 CountryCode *string `json:"countryCode,omitempty"` 15 } 16 17 // NewBankAccountBban constructs a new BankAccountBban 18 func NewBankAccountBban() *BankAccountBban { 19 return &BankAccountBban{} 20 }