export interface LaborShiftDeletedEventData { /** The type of object affected by the event. For this event, the value is `shift`. */ type?: string | null; /** The ID of the affected `Shift`. */ id?: string; /** Is true if the affected object was deleted. Otherwise absent. */ deleted?: boolean | null; }