import type * as Square from "../index"; export interface BankAccountDisabledEventData { /** Name of the affected object’s type, `"bank_account"`. */ type?: string | null; /** ID of the affected bank account. */ id?: string; /** An object containing the disabled bank account. */ object?: Square.BankAccountDisabledEventObject; }