github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/refund/BankRefundMethodSpecificInput.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 import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions" 7 8 // BankRefundMethodSpecificInput represents class BankRefundMethodSpecificInput 9 type BankRefundMethodSpecificInput struct { 10 BankAccountBban *BankAccountBbanRefund `json:"bankAccountBban,omitempty"` 11 BankAccountIban *definitions.BankAccountIban `json:"bankAccountIban,omitempty"` 12 CountryCode *string `json:"countryCode,omitempty"` 13 } 14 15 // NewBankRefundMethodSpecificInput constructs a new BankRefundMethodSpecificInput 16 func NewBankRefundMethodSpecificInput() *BankRefundMethodSpecificInput { 17 return &BankRefundMethodSpecificInput{} 18 }