DocumentAccepted
public struct DocumentAccepted : Codable, Equatable
Information returned after an uploaded document is accepted.
-
Status of the document in the ingestion process. A status of
See moreprocessing
is returned for documents that are ingested with a version date before2019-01-01
. Thepending
status is returned for all others.Declaration
Swift
public enum Status : String
-
The unique identifier of the ingested document.
Declaration
Swift
public var documentID: String?
-
Status of the document in the ingestion process. A status of
processing
is returned for documents that are ingested with a version date before2019-01-01
. Thepending
status is returned for all others.Declaration
Swift
public var status: String?
-
Array of notices produced by the document-ingestion process.
Declaration
Swift
public var notices: [Notice]?