/** * 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 EntitySortBy: { readonly NAME: "NAME"; readonly CREATED_ON: "CREATED_ON"; readonly MODIFIED_ON: "MODIFIED_ON"; }; export type EntitySortBy = typeof EntitySortBy[keyof typeof EntitySortBy]; export declare function instanceOfEntitySortBy(value: any): boolean; export declare function EntitySortByFromJSON(json: any): EntitySortBy; export declare function EntitySortByFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntitySortBy; export declare function EntitySortByToJSON(value?: EntitySortBy | null): any; export declare function EntitySortByToJSONTyped(value: any, ignoreDiscriminator: boolean): EntitySortBy;