/** * 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. */ /** * Additional context provided for grid agent chat sessions. * @export * @interface GridAgentSessionContext */ export interface GridAgentSessionContext { /** * * @type {string} * @memberof GridAgentSessionContext */ concreteType: GridAgentSessionContextConcreteTypeEnum; /** * Required. The grid session ID. * @type {string} * @memberof GridAgentSessionContext */ gridSessionId?: string; /** * Required. The calling user's grid replica ID. * @type {number} * @memberof GridAgentSessionContext */ usersReplicaId?: number; /** * The replica ID issued to the user's agent. * @type {number} * @memberof GridAgentSessionContext */ agentsReplicaId?: number; } /** * @export */ export declare const GridAgentSessionContextConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_agent_GridAgentSessionContext: "org.sagebionetworks.repo.model.agent.GridAgentSessionContext"; }; export type GridAgentSessionContextConcreteTypeEnum = typeof GridAgentSessionContextConcreteTypeEnum[keyof typeof GridAgentSessionContextConcreteTypeEnum]; /** * Check if a given object implements the GridAgentSessionContext interface. */ export declare function instanceOfGridAgentSessionContext(value: object): value is GridAgentSessionContext; export declare function GridAgentSessionContextFromJSON(json: any): GridAgentSessionContext; export declare function GridAgentSessionContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridAgentSessionContext; export declare function GridAgentSessionContextToJSON(json: any): GridAgentSessionContext; export declare function GridAgentSessionContextToJSONTyped(value?: GridAgentSessionContext | null, ignoreDiscriminator?: boolean): any;