import type * as Square from "../index"; export interface InventoryCountUpdatedEventData { /** Name of the affected object’s type. For this event, the value is `inventory_counts`. */ type?: string | null; /** ID of the affected object. */ id?: string; /** An object containing fields and values relevant to the event. Is absent if affected object was deleted. */ object?: Square.InventoryCountUpdatedEventObject; }