/** * This file was auto-generated by Fern from our API Definition. */ /** * How much storage the document used. This information is currently not returned when * retrieving the document, and only returned when indexing a document. */ export interface DocumentStorageUsage { /** * Number of bytes used by document counting towards maximum corpus size, and * towards any billing plans. */ bytesUsed?: number; /** Number of metadata bytes used by a document. */ metadataBytesUsed?: number; }