/** * 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 ViewEntityType: { readonly entityview: "entityview"; readonly submissionview: "submissionview"; readonly dataset: "dataset"; readonly datasetcollection: "datasetcollection"; }; export type ViewEntityType = typeof ViewEntityType[keyof typeof ViewEntityType]; export declare function instanceOfViewEntityType(value: any): boolean; export declare function ViewEntityTypeFromJSON(json: any): ViewEntityType; export declare function ViewEntityTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ViewEntityType; export declare function ViewEntityTypeToJSON(value?: ViewEntityType | null): any; export declare function ViewEntityTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): ViewEntityType;