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