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