/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * threadId: "thread_id", * userId: "user_id" * } */ export interface CreateThreadRequest { /** The unique identifier of the thread. */ threadId: string; /** The unique identifier of the user associated with the thread */ userId: string; }