/** * 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. */ /** * * @export */ export declare const QuerySortDirection: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; export type QuerySortDirection = typeof QuerySortDirection[keyof typeof QuerySortDirection]; export declare function instanceOfQuerySortDirection(value: any): boolean; export declare function QuerySortDirectionFromJSON(json: any): QuerySortDirection; export declare function QuerySortDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuerySortDirection; export declare function QuerySortDirectionToJSON(value?: QuerySortDirection | null): any; export declare function QuerySortDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): QuerySortDirection;