/** * 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. */ /** * Request to create a new replica. A replica represents an 'in-memory' grid document identifed by a unique replicaId. * @export * @interface CreateReplicaRequest */ export interface CreateReplicaRequest { /** * The ID of the grid seesion. * @type {string} * @memberof CreateReplicaRequest */ gridSessionId?: string; } /** * Check if a given object implements the CreateReplicaRequest interface. */ export declare function instanceOfCreateReplicaRequest(value: object): value is CreateReplicaRequest; export declare function CreateReplicaRequestFromJSON(json: any): CreateReplicaRequest; export declare function CreateReplicaRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateReplicaRequest; export declare function CreateReplicaRequestToJSON(json: any): CreateReplicaRequest; export declare function CreateReplicaRequestToJSONTyped(value?: CreateReplicaRequest | null, ignoreDiscriminator?: boolean): any;