import type * as Square from "../index"; /** * Published when a [Timecard](entity:Timecard) is updated. */ export interface LaborTimecardUpdatedEvent { /** The ID of the merchant associated with the event. */ merchantId?: string | null; /** The type of event. For this event, the value is `labor.timecard.updated`. */ type?: string | null; /** The unique ID for the event. */ eventId?: string | null; /** The timestamp of when the event was created, in RFC 3339 format. */ createdAt?: string; /** The data associated with the event. */ data?: Square.LaborTimecardUpdatedEventData; }