/** * 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. */ import type { GridAgentSessionContext } from './GridAgentSessionContext'; /** * Information about a specific session (conversation) with an agent. Only the access level can be changed on an existing session. You will need to start a new session if you wish to use a different agentId. * @export * @interface CreateAgentSessionRequest */ export interface CreateAgentSessionRequest { /** * Defines the level of data access that the agent will be given during a session. * @type {string} * @memberof CreateAgentSessionRequest */ agentAccessLevel?: CreateAgentSessionRequestAgentAccessLevelEnum; /** * Optional. When provided, the registered agent will be used for this session. When excluded the default 'baseline' agent will be used. * @type {string} * @memberof CreateAgentSessionRequest */ agentRegistrationId?: string; /** * * @type {GridAgentSessionContext} * @memberof CreateAgentSessionRequest */ sessionContext?: GridAgentSessionContext; } /** * @export */ export declare const CreateAgentSessionRequestAgentAccessLevelEnum: { readonly PUBLICLY_ACCESSIBLE: "PUBLICLY_ACCESSIBLE"; readonly READ_YOUR_PRIVATE_DATA: "READ_YOUR_PRIVATE_DATA"; readonly WRITE_YOUR_PRIVATE_DATA: "WRITE_YOUR_PRIVATE_DATA"; }; export type CreateAgentSessionRequestAgentAccessLevelEnum = typeof CreateAgentSessionRequestAgentAccessLevelEnum[keyof typeof CreateAgentSessionRequestAgentAccessLevelEnum]; /** * Check if a given object implements the CreateAgentSessionRequest interface. */ export declare function instanceOfCreateAgentSessionRequest(value: object): value is CreateAgentSessionRequest; export declare function CreateAgentSessionRequestFromJSON(json: any): CreateAgentSessionRequest; export declare function CreateAgentSessionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAgentSessionRequest; export declare function CreateAgentSessionRequestToJSON(json: any): CreateAgentSessionRequest; export declare function CreateAgentSessionRequestToJSONTyped(value?: CreateAgentSessionRequest | null, ignoreDiscriminator?: boolean): any;