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