/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * status: "status" * } */ export interface IndexingCallbackRequest { /** Session ID from the code indexing operation */ session_id?: string; /** Status of indexing operation: 'success' or 'failed' */ status: string; }