LogQueryResponseResultDocumentsResult
public struct LogQueryResponseResultDocumentsResult : Codable, Equatable
Each object in the results array corresponds to an individual document returned by the original query.
-
The result rank of this document. A position of
1indicates that it was the first returned result.Declaration
Swift
public var position: Int? -
The document_id of the document that this result represents.
Declaration
Swift
public var documentID: String? -
The raw score of this result. A higher score indicates a greater match to the query parameters.
Declaration
Swift
public var score: Double? -
The confidence score of the result’s analysis. A higher score indicating greater confidence.
Declaration
Swift
public var confidence: Double? -
The collection_id of the document represented by this result.
Declaration
Swift
public var collectionID: String?
View on GitHub
LogQueryResponseResultDocumentsResult Structure Reference