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