import type * as Square from "../index"; export interface OrderFulfillmentUpdatedEventData { /** Name of the affected object’s type, `"order_fulfillment_updated"`. */ type?: string | null; /** ID of the affected order. */ id?: string; /** An object containing information about the updated Order. */ object?: Square.OrderFulfillmentUpdatedObject; }