import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AgentConversationAgentVersion = string | number; export type AgentConversation = { /** * Name given to the conversation. */ name?: string | null | undefined; /** * Description of the what the conversation is about. */ description?: string | null | undefined; /** * Custom metadata for the conversation. */ metadata?: { [k: string]: any; } | null | undefined; object: "conversation"; id: string; createdAt: Date; updatedAt: Date; agentId: string; agentVersion?: string | number | null | undefined; }; /** @internal */ export declare const AgentConversationAgentVersion$inboundSchema: z.ZodType; export declare function agentConversationAgentVersionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AgentConversation$inboundSchema: z.ZodType; export declare function agentConversationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentconversation.d.ts.map