/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Sort specification for search results. * @export * @interface SearchSortField */ export interface SearchSortField { /** * The column name to sort by, or '_score' for relevance. * @type {string} * @memberof SearchSortField */ columnName?: string; /** * Sort direction for search results. * @type {string} * @memberof SearchSortField */ direction?: SearchSortFieldDirectionEnum; } /** * @export */ export declare const SearchSortFieldDirectionEnum: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; export type SearchSortFieldDirectionEnum = typeof SearchSortFieldDirectionEnum[keyof typeof SearchSortFieldDirectionEnum]; /** * Check if a given object implements the SearchSortField interface. */ export declare function instanceOfSearchSortField(value: object): value is SearchSortField; export declare function SearchSortFieldFromJSON(json: any): SearchSortField; export declare function SearchSortFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchSortField; export declare function SearchSortFieldToJSON(json: any): SearchSortField; export declare function SearchSortFieldToJSONTyped(value?: SearchSortField | null, ignoreDiscriminator?: boolean): any;