/** * 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. */ import type { Dataset } from './Dataset'; import type { DatasetCollection } from './DatasetCollection'; /** * @type EntityRefCollectionView * A view referencing a fixed collections of entities * @export */ export type EntityRefCollectionView = { concreteType: 'org.sagebionetworks.repo.model.table.Dataset'; } & Dataset | { concreteType: 'org.sagebionetworks.repo.model.table.DatasetCollection'; } & DatasetCollection; export declare function EntityRefCollectionViewFromJSON(json: any): EntityRefCollectionView; export declare function EntityRefCollectionViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityRefCollectionView; export declare function EntityRefCollectionViewToJSON(json: any): any; export declare function EntityRefCollectionViewToJSONTyped(value?: EntityRefCollectionView | null, ignoreDiscriminator?: boolean): any;