/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { AgentDisplayMessage } from './AgentDisplayMessage'; /** * * @export * @interface AgentGetConversationResponse */ export interface AgentGetConversationResponse { /** * * @type {Array} * @memberof AgentGetConversationResponse */ messages?: Array; } /** * Check if a given object implements the AgentGetConversationResponse interface. */ export declare function instanceOfAgentGetConversationResponse(value: object): value is AgentGetConversationResponse; export declare function AgentGetConversationResponseFromJSON(json: any): AgentGetConversationResponse; export declare function AgentGetConversationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentGetConversationResponse; export declare function AgentGetConversationResponseToJSON(json: any): AgentGetConversationResponse; export declare function AgentGetConversationResponseToJSONTyped(value?: AgentGetConversationResponse | null, ignoreDiscriminator?: boolean): any;