/** * 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. */ /** * Request a single page of a session's history. The history is ordered by the interaction time stamp descending. * @export * @interface SessionHistoryRequest */ export interface SessionHistoryRequest { /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof SessionHistoryRequest */ nextPageToken?: string; } /** * Check if a given object implements the SessionHistoryRequest interface. */ export declare function instanceOfSessionHistoryRequest(value: object): value is SessionHistoryRequest; export declare function SessionHistoryRequestFromJSON(json: any): SessionHistoryRequest; export declare function SessionHistoryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SessionHistoryRequest; export declare function SessionHistoryRequestToJSON(json: any): SessionHistoryRequest; export declare function SessionHistoryRequestToJSONTyped(value?: SessionHistoryRequest | null, ignoreDiscriminator?: boolean): any;