/** * 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. */ /** * Information about a replica. * @export * @interface GridReplica */ export interface GridReplica { /** * The ID of the grid seesion. * @type {string} * @memberof GridReplica */ gridSessionId?: string; /** * The unique identifier for the new replica. * @type {number} * @memberof GridReplica */ replicaId?: number; /** * The user that created this replica. * @type {string} * @memberof GridReplica */ createdBy?: string; /** * When true, this replica belongs to the createdBy user's agent. * @type {boolean} * @memberof GridReplica */ isAgentReplica?: boolean; /** * The date-time when the user created this replica. * @type {string} * @memberof GridReplica */ createdOn?: string; } /** * Check if a given object implements the GridReplica interface. */ export declare function instanceOfGridReplica(value: object): value is GridReplica; export declare function GridReplicaFromJSON(json: any): GridReplica; export declare function GridReplicaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridReplica; export declare function GridReplicaToJSON(json: any): GridReplica; export declare function GridReplicaToJSONTyped(value?: GridReplica | null, ignoreDiscriminator?: boolean): any;