/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../../../../index.js"; /** * @example * { * data: "data", * type: "text" * } */ export interface AddDataRequest { createdAt?: string; data: string; /** graph_id is the ID of the graph to which the data will be added. If adding to the user graph, please use user_id field instead. */ graphId?: string; sourceDescription?: string; type: Zep.GraphDataType; /** User ID is the ID of the user to which the data will be added. If not adding to a user graph, please use graph_id field instead. */ userId?: string; }