/** * 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. */ /** * Execution details for a metadata curation task involving a collaborative grid session. * @export * @interface GridExecutionDetails */ export interface GridExecutionDetails { /** * Indicates which implementation of TaskExecutionDetails this object represents. * @type {string} * @memberof GridExecutionDetails */ concreteType: GridExecutionDetailsConcreteTypeEnum; /** * The unique identifier of the active CRDT grid session linked to this task. * @type {string} * @memberof GridExecutionDetails */ activeSessionId?: string; } /** * @export */ export declare const GridExecutionDetailsConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_curation_execution_GridExecutionDetails: "org.sagebionetworks.repo.model.curation.execution.GridExecutionDetails"; }; export type GridExecutionDetailsConcreteTypeEnum = typeof GridExecutionDetailsConcreteTypeEnum[keyof typeof GridExecutionDetailsConcreteTypeEnum]; /** * Check if a given object implements the GridExecutionDetails interface. */ export declare function instanceOfGridExecutionDetails(value: object): value is GridExecutionDetails; export declare function GridExecutionDetailsFromJSON(json: any): GridExecutionDetails; export declare function GridExecutionDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridExecutionDetails; export declare function GridExecutionDetailsToJSON(json: any): GridExecutionDetails; export declare function GridExecutionDetailsToJSONTyped(value?: GridExecutionDetails | null, ignoreDiscriminator?: boolean): any;