/** * 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. */ /** * Defines an entity query sort. * @export * @interface QuerySort */ export interface QuerySort { /** * The name of the column to sort by. The value can either be an annotation name or an EntityFieldName * @type {string} * @memberof QuerySort */ columnName?: string; /** * Direction of the sort * @type {string} * @memberof QuerySort */ direction?: QuerySortDirectionEnum; } /** * @export */ export declare const QuerySortDirectionEnum: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; export type QuerySortDirectionEnum = typeof QuerySortDirectionEnum[keyof typeof QuerySortDirectionEnum]; /** * Check if a given object implements the QuerySort interface. */ export declare function instanceOfQuerySort(value: object): value is QuerySort; export declare function QuerySortFromJSON(json: any): QuerySort; export declare function QuerySortFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuerySort; export declare function QuerySortToJSON(json: any): QuerySort; export declare function QuerySortToJSONTyped(value?: QuerySort | null, ignoreDiscriminator?: boolean): any;