/** * 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 { ChatUIAction } from './ChatUIAction'; /** * * @export * @interface AgentSendMessageResponse */ export interface AgentSendMessageResponse { /** * * @type {Array} * @memberof AgentSendMessageResponse */ appliedActions?: Array; /** * * @type {boolean} * @memberof AgentSendMessageResponse */ contextUpdated?: boolean; /** * * @type {string} * @memberof AgentSendMessageResponse */ responseText?: string; /** * * @type {Array} * @memberof AgentSendMessageResponse */ uiActions?: Array; } /** * Check if a given object implements the AgentSendMessageResponse interface. */ export declare function instanceOfAgentSendMessageResponse(value: object): value is AgentSendMessageResponse; export declare function AgentSendMessageResponseFromJSON(json: any): AgentSendMessageResponse; export declare function AgentSendMessageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentSendMessageResponse; export declare function AgentSendMessageResponseToJSON(json: any): AgentSendMessageResponse; export declare function AgentSendMessageResponseToJSONTyped(value?: AgentSendMessageResponse | null, ignoreDiscriminator?: boolean): any;