/** * 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 { PartialRow } from './PartialRow'; import type { SparseRowDto } from './SparseRowDto'; /** * @type HasEtag * Implementation has an etag. * @export */ export type HasEtag = { concreteType: 'org.sagebionetworks.repo.model.table.PartialRow'; } & PartialRow | { concreteType: 'org.sagebionetworks.repo.model.table.SparseRowDto'; } & SparseRowDto; export declare function HasEtagFromJSON(json: any): HasEtag; export declare function HasEtagFromJSONTyped(json: any, ignoreDiscriminator: boolean): HasEtag; export declare function HasEtagToJSON(json: any): any; export declare function HasEtagToJSONTyped(value?: HasEtag | null, ignoreDiscriminator?: boolean): any;