DocumentStatus

public struct DocumentStatus : Codable, Equatable

Status information about a submitted document.

  • Status of the document in the ingestion process.

    See more

    Declaration

    Swift

    public enum Status : String
  • The type of the original source file.

    See more

    Declaration

    Swift

    public enum FileType : String
  • The unique identifier of the document.

    Declaration

    Swift

    public var documentID: String
  • The unique identifier for the configuration.

    Declaration

    Swift

    public var configurationID: String?
  • Status of the document in the ingestion process.

    Declaration

    Swift

    public var status: String
  • Description of the document status.

    Declaration

    Swift

    public var statusDescription: String
  • Name of the original source file (if available).

    Declaration

    Swift

    public var filename: String?
  • The type of the original source file.

    Declaration

    Swift

    public var fileType: String?
  • The SHA-1 hash of the original source file (formatted as a hexadecimal string).

    Declaration

    Swift

    public var sha1: String?
  • Array of notices produced by the document-ingestion process.

    Declaration

    Swift

    public var notices: [Notice]