/** * 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. */ /** * Represents a single interaction between the user and an agent. * @export * @interface Interaction */ export interface Interaction { /** * The text of the user's request * @type {string} * @memberof Interaction */ requestText?: string; /** * The time stamp when the user made the request * @type {string} * @memberof Interaction */ requestTimestamp?: string; /** * The text of the agent's response * @type {string} * @memberof Interaction */ responseText?: string; /** * The time stamp when the agent produced the response. * @type {string} * @memberof Interaction */ responseTimestamp?: string; } /** * Check if a given object implements the Interaction interface. */ export declare function instanceOfInteraction(value: object): value is Interaction; export declare function InteractionFromJSON(json: any): Interaction; export declare function InteractionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Interaction; export declare function InteractionToJSON(json: any): Interaction; export declare function InteractionToJSONTyped(value?: Interaction | null, ignoreDiscriminator?: boolean): any;