/** * 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 { Interaction } from './Interaction'; /** * A single page of an agent session history * @export * @interface SessionHistoryResponse */ export interface SessionHistoryResponse { /** * The session ID of this conversation's history * @type {string} * @memberof SessionHistoryResponse */ sessionId?: string; /** * A single page of a session's history. The history is ordered by the interaction time stamp descending. * @type {Array} * @memberof SessionHistoryResponse */ page?: Array; /** * Forward this token to get the next page of results. * @type {string} * @memberof SessionHistoryResponse */ nextPageToken?: string; } /** * Check if a given object implements the SessionHistoryResponse interface. */ export declare function instanceOfSessionHistoryResponse(value: object): value is SessionHistoryResponse; export declare function SessionHistoryResponseFromJSON(json: any): SessionHistoryResponse; export declare function SessionHistoryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SessionHistoryResponse; export declare function SessionHistoryResponseToJSON(json: any): SessionHistoryResponse; export declare function SessionHistoryResponseToJSONTyped(value?: SessionHistoryResponse | null, ignoreDiscriminator?: boolean): any;