/** * 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. */ /** * Summary information about a replica in a grid session. * @export * @interface GridReplicaInfo */ export interface GridReplicaInfo { /** * The unique identifier for the replica within the grid session. * @type {number} * @memberof GridReplicaInfo */ replicaId?: number; /** * The ID of the user that created this replica. * @type {string} * @memberof GridReplicaInfo */ createdBy?: string; /** * When true, this replica has an active connection to the grid session. * @type {boolean} * @memberof GridReplicaInfo */ isConnected?: boolean; /** * The type of a grid replica. * @type {string} * @memberof GridReplicaInfo */ replicaType?: GridReplicaInfoReplicaTypeEnum; } /** * @export */ export declare const GridReplicaInfoReplicaTypeEnum: { readonly USER: "USER"; readonly AGENT: "AGENT"; readonly SERVICE: "SERVICE"; }; export type GridReplicaInfoReplicaTypeEnum = typeof GridReplicaInfoReplicaTypeEnum[keyof typeof GridReplicaInfoReplicaTypeEnum]; /** * Check if a given object implements the GridReplicaInfo interface. */ export declare function instanceOfGridReplicaInfo(value: object): value is GridReplicaInfo; export declare function GridReplicaInfoFromJSON(json: any): GridReplicaInfo; export declare function GridReplicaInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridReplicaInfo; export declare function GridReplicaInfoToJSON(json: any): GridReplicaInfo; export declare function GridReplicaInfoToJSONTyped(value?: GridReplicaInfo | null, ignoreDiscriminator?: boolean): any;