import type * as Square from "../index"; /** * Published when a [ScheduledShift](entity:ScheduledShift) is updated. */ export interface LaborScheduledShiftUpdatedEvent { /** The ID of the merchant associated with the event. */ merchantId?: string | null; /** The ID of the location associated with the event. */ locationId?: string | null; /** The type of event. For this event, the value is `labor.scheduled_shift.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.LaborScheduledShiftUpdatedEventData; }