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