github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/BankAccountIban.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  // BankAccountIban represents class BankAccountIban
     7  type BankAccountIban struct {
     8  	AccountHolderName *string `json:"accountHolderName,omitempty"`
     9  	Iban              *string `json:"iban,omitempty"`
    10  }
    11  
    12  // NewBankAccountIban constructs a new BankAccountIban
    13  func NewBankAccountIban() *BankAccountIban {
    14  	return &BankAccountIban{}
    15  }