export interface LaborScheduledShiftDeletedEventData { /** 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; /** Is true if the affected object was deleted. Otherwise absent. */ deleted?: boolean | null; }