/** * @type Sort: Document representing a sort request. Each API has a different default sort configuration that can be modified in the request. * * @property field: The name of the field to sort on. * - **Max Length:** 256 * * @property sortOrder: The sort order to be applied when sorting. When omitted, the default sort order (asc) is used. * */ export type Sort = { field: string; sortOrder?: SortSortOrderEnum; } & { [key: string]: any; }; export type SortSortOrderEnum = 'asc' | 'desc';