github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/ValidationBankAccountOutput.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  // ValidationBankAccountOutput represents class ValidationBankAccountOutput
     7  type ValidationBankAccountOutput struct {
     8  	Checks                   *[]ValidationBankAccountCheck `json:"checks,omitempty"`
     9  	NewBankName              *string                       `json:"newBankName,omitempty"`
    10  	ReformattedAccountNumber *string                       `json:"reformattedAccountNumber,omitempty"`
    11  	ReformattedBankCode      *string                       `json:"reformattedBankCode,omitempty"`
    12  	ReformattedBranchCode    *string                       `json:"reformattedBranchCode,omitempty"`
    13  }
    14  
    15  // NewValidationBankAccountOutput constructs a new ValidationBankAccountOutput
    16  func NewValidationBankAccountOutput() *ValidationBankAccountOutput {
    17  	return &ValidationBankAccountOutput{}
    18  }