import type * as Square from "../index"; /** * Sets the sort order of search results. * * Deprecated at Square API version 2025-05-21. See the [migration notes](https://developer.squareup.com/docs/labor-api/what-it-does#migration-notes). */ export interface ShiftSort { /** * The field to sort on. * See [ShiftSortField](#type-shiftsortfield) for possible values */ field?: Square.ShiftSortField; /** * The order in which results are returned. Defaults to DESC. * See [SortOrder](#type-sortorder) for possible values */ order?: Square.SortOrder; }