QueryNoticesResponse

public struct QueryNoticesResponse : Codable, Equatable

Object containing notice query results.

  • The number of matching results.

    Declaration

    Swift

    public var matchingResults: Int?
  • Array of document results that match the query.

    Declaration

    Swift

    public var results: [QueryNoticesResult]?
  • Array of aggregation results that match the query.

    Declaration

    Swift

    public var aggregations: [QueryAggregation]?
  • Array of passage results that match the query.

    Declaration

    Swift

    public var passages: [QueryPassages]?
  • The number of duplicates removed from this notices query.

    Declaration

    Swift

    public var duplicatesRemoved: Int?