import type * as Square from "../index"; export interface LaborTimecardCreatedEventData { /** 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; /** An object containing the affected `Timecard`. */ object?: Square.LaborTimecardCreatedEventObject; }