import type * as Square from "../index"; /** * Response object returned by CreateBankAccount. */ export interface CreateBankAccountResponse { /** The 'BankAccount' that was created. */ bankAccount?: Square.BankAccount; /** Information on errors encountered during the request. */ errors?: Square.Error_[]; }