import type * as Square from "../index"; /** * Published when a worker starts a [Shift](entity:Shift). * * Deprecated at Square API version 2025-05-21. Replaced by `labor.timecard.created`. */ export interface LaborShiftCreatedEvent { /** The ID of the merchant associated with the event. */ merchantId?: string | null; /** The type of event. For this event, the value is `labor.shift.created`. */ 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.LaborShiftCreatedEventData; }