/** * Represents options for an individual publish request in a * [BulkPublishScheduledShifts](api-endpoint:Labor-BulkPublishScheduledShifts) * operation, provided as the value in a key-value pair. */ export interface BulkPublishScheduledShiftsData { /** * The current version of the scheduled shift, used to enable [optimistic concurrency](https://developer.squareup.com/docs/build-basics/common-api-patterns/optimistic-concurrency) * control. If the provided version doesn't match the server version, the request fails. * If omitted, Square executes a blind write, potentially overwriting data from another publish request. */ version?: number; }