import type * as Square from "../index"; /** * Represents filter and sort criteria for the `query` field in a * [SearchScheduledShifts](api-endpoint:Labor-SearchScheduledShifts) request. */ export interface ScheduledShiftQuery { /** Filtering options for the query. */ filter?: Square.ScheduledShiftFilter; /** Sorting options for the query. */ sort?: Square.ScheduledShiftSort; }