import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ConversationObject, ConversationObject$Outbound } from "./conversationobject.js"; export type ConversationListObject = { object: "list"; /** * Array of conversations */ data: Array; /** * Whether there are more conversations */ hasMore: boolean; /** * ID of the last conversation in the current page */ lastId?: string | undefined; }; /** @internal */ export declare const ConversationListObject$inboundSchema: z.ZodType; /** @internal */ export type ConversationListObject$Outbound = { object: "list"; data: Array; has_more: boolean; last_id?: string | undefined; }; /** @internal */ export declare const ConversationListObject$outboundSchema: z.ZodType; export declare function conversationListObjectToJSON(conversationListObject: ConversationListObject): string; export declare function conversationListObjectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=conversationlistobject.d.ts.map