QueryNoticesResult

public struct QueryNoticesResult : Codable, Equatable

Query result object.

  • The type of the original source file.

    See more

    Declaration

    Swift

    public enum FileType : String
  • id

    The unique identifier of the document.

    Declaration

    Swift

    public var id: String?
  • Metadata of the document.

    Declaration

    Swift

    public var metadata: [String : JSON]?
  • The collection ID of the collection containing the document for this result.

    Declaration

    Swift

    public var collectionID: String?
  • Metadata of a query result.

    Declaration

    Swift

    public var resultMetadata: QueryResultMetadata?
  • The internal status code returned by the ingestion subsystem indicating the overall result of ingesting the source document.

    Declaration

    Swift

    public var code: Int?
  • 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 for the document.

    Declaration

    Swift

    public var notices: [Notice]?
  • Additional properties associated with this model.

    Declaration

    Swift

    public var additionalProperties: [String : JSON]
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws