import type * as Square from "../index"; export interface LaborShiftUpdatedEventData { /** The type of object affected by the event. For this event, the value is `shift`. */ type?: string | null; /** ID of the affected `Shift`. */ id?: string; /** An object containing the affected `Shift`. */ object?: Square.LaborShiftUpdatedEventObject; }