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