/** * 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 { AgentContextType } from './AgentContextType'; /** * * @export * @interface AgentSendMessageRequest */ export interface AgentSendMessageRequest { /** * * @type {string} * @memberof AgentSendMessageRequest */ contextId?: string; /** * * @type {string} * @memberof AgentSendMessageRequest */ contextMetadata?: string; /** * * @type {AgentContextType} * @memberof AgentSendMessageRequest */ contextType?: AgentContextType; /** * * @type {string} * @memberof AgentSendMessageRequest */ message?: string; } /** * Check if a given object implements the AgentSendMessageRequest interface. */ export declare function instanceOfAgentSendMessageRequest(value: object): value is AgentSendMessageRequest; export declare function AgentSendMessageRequestFromJSON(json: any): AgentSendMessageRequest; export declare function AgentSendMessageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentSendMessageRequest; export declare function AgentSendMessageRequestToJSON(json: any): AgentSendMessageRequest; export declare function AgentSendMessageRequestToJSONTyped(value?: AgentSendMessageRequest | null, ignoreDiscriminator?: boolean): any;