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