import type * as Square from "../index"; export interface CardAutomaticallyUpdatedEventData { /** The type of the event data object. The value is `"card"`. */ type?: string | null; /** The ID of the event data object. */ id?: string; /** An object containing the automatically updated card. */ object?: Square.CardAutomaticallyUpdatedEventObject; }