/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface DocumentCollectionResponse {
    createdAt?: string;
    description?: string;
    /** Number of documents in the collection */
    documentCount?: number;
    /** Number of documents with embeddings */
    documentEmbeddedCount?: number;
    embeddingDimensions?: number;
    embeddingModelName?: string;
    isAutoEmbedded?: boolean;
    isIndexed?: boolean;
    isNormalized?: boolean;
    metadata?: Record<string, unknown>;
    name?: string;
    updatedAt?: string;
    uuid?: string;
}
