import type * as Square from "../index"; /** * Response object returned by GetBankAccountByV1Id. */ export interface GetBankAccountByV1IdResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The requested `BankAccount` object. */ bankAccount?: Square.BankAccount; }