/** * 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 { LiteralSetValue } from './LiteralSetValue'; import type { TemplateSetValue } from './TemplateSetValue'; /** * @type SetValue * * @export */ export type SetValue = { concreteType: 'org.sagebionetworks.repo.model.grid.update.LiteralSetValue'; } & LiteralSetValue | { concreteType: 'org.sagebionetworks.repo.model.grid.update.TemplateSetValue'; } & TemplateSetValue; export declare function SetValueFromJSON(json: any): SetValue; export declare function SetValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetValue; export declare function SetValueToJSON(json: any): any; export declare function SetValueToJSONTyped(value?: SetValue | null, ignoreDiscriminator?: boolean): any;