/** * 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. */ /** * Start a new job to synchronize a grid session with its source data. * @export * @interface SynchronizeGridRequest */ export interface SynchronizeGridRequest { /** * * @type {string} * @memberof SynchronizeGridRequest */ concreteType: SynchronizeGridRequestConcreteTypeEnum; /** * The ID of the grid session to synchronize. * @type {string} * @memberof SynchronizeGridRequest */ gridSessionId?: string; } /** * @export */ export declare const SynchronizeGridRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_SynchronizeGridRequest: "org.sagebionetworks.repo.model.grid.SynchronizeGridRequest"; }; export type SynchronizeGridRequestConcreteTypeEnum = typeof SynchronizeGridRequestConcreteTypeEnum[keyof typeof SynchronizeGridRequestConcreteTypeEnum]; /** * Check if a given object implements the SynchronizeGridRequest interface. */ export declare function instanceOfSynchronizeGridRequest(value: object): value is SynchronizeGridRequest; export declare function SynchronizeGridRequestFromJSON(json: any): SynchronizeGridRequest; export declare function SynchronizeGridRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SynchronizeGridRequest; export declare function SynchronizeGridRequestToJSON(json: any): SynchronizeGridRequest; export declare function SynchronizeGridRequestToJSONTyped(value?: SynchronizeGridRequest | null, ignoreDiscriminator?: boolean): any;