/** * 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 DownloadSortField: { readonly fileName: "fileName"; readonly projectName: "projectName"; readonly synId: "synId"; readonly versionNumber: "versionNumber"; readonly addedOn: "addedOn"; readonly createdBy: "createdBy"; readonly createdOn: "createdOn"; readonly fileSize: "fileSize"; readonly isEligibleForPackaging: "isEligibleForPackaging"; }; export type DownloadSortField = typeof DownloadSortField[keyof typeof DownloadSortField]; export declare function instanceOfDownloadSortField(value: any): boolean; export declare function DownloadSortFieldFromJSON(json: any): DownloadSortField; export declare function DownloadSortFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadSortField; export declare function DownloadSortFieldToJSON(value?: DownloadSortField | null): any; export declare function DownloadSortFieldToJSONTyped(value: any, ignoreDiscriminator: boolean): DownloadSortField;