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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package services
     5  
     6  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // BankDetailsResponse represents class BankDetailsResponse
     9  type BankDetailsResponse struct {
    10  	BankAccountBban *definitions.BankAccountBban `json:"bankAccountBban,omitempty"`
    11  	BankAccountIban *definitions.BankAccountIban `json:"bankAccountIban,omitempty"`
    12  	BankData        *BankData                    `json:"bankData,omitempty"`
    13  	Swift           *Swift                       `json:"swift,omitempty"`
    14  }
    15  
    16  // NewBankDetailsResponse constructs a new BankDetailsResponse
    17  func NewBankDetailsResponse() *BankDetailsResponse {
    18  	return &BankDetailsResponse{}
    19  }