/** * 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. */ /** * The result of a job to synchronize a grid session with its source data. * @export * @interface SynchronizeGridResponse */ export interface SynchronizeGridResponse { /** * * @type {string} * @memberof SynchronizeGridResponse */ concreteType: SynchronizeGridResponseConcreteTypeEnum; /** * The ID of the grid session to synchronize. * @type {string} * @memberof SynchronizeGridResponse */ gridSessionId?: string; /** * Any error messages generated during the synchronization process. * @type {Array} * @memberof SynchronizeGridResponse */ errorMessages?: Array; } /** * @export */ export declare const SynchronizeGridResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_SynchronizeGridResponse: "org.sagebionetworks.repo.model.grid.SynchronizeGridResponse"; }; export type SynchronizeGridResponseConcreteTypeEnum = typeof SynchronizeGridResponseConcreteTypeEnum[keyof typeof SynchronizeGridResponseConcreteTypeEnum]; /** * Check if a given object implements the SynchronizeGridResponse interface. */ export declare function instanceOfSynchronizeGridResponse(value: object): value is SynchronizeGridResponse; export declare function SynchronizeGridResponseFromJSON(json: any): SynchronizeGridResponse; export declare function SynchronizeGridResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SynchronizeGridResponse; export declare function SynchronizeGridResponseToJSON(json: any): SynchronizeGridResponse; export declare function SynchronizeGridResponseToJSONTyped(value?: SynchronizeGridResponse | null, ignoreDiscriminator?: boolean): any;