/** * 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 Direction: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; export type Direction = typeof Direction[keyof typeof Direction]; export declare function instanceOfDirection(value: any): boolean; export declare function DirectionFromJSON(json: any): Direction; export declare function DirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Direction; export declare function DirectionToJSON(value?: Direction | null): any; export declare function DirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): Direction;