DocumentCounts
public struct DocumentCounts : Codable, Equatable
Object containing collection document count information.
-
The total number of available documents in the collection.
Declaration
Swift
public var available: Int?
-
The number of documents in the collection that are currently being processed.
Declaration
Swift
public var processing: Int?
-
The number of documents in the collection that failed to be ingested.
Declaration
Swift
public var failed: Int?
-
The number of documents that have been uploaded to the collection, but have not yet started processing.
Declaration
Swift
public var pending: Int?