Show / Hide Table of Contents

Class SearchResultCollection

The list of search result items matching the criteria returned from the search operation. Search errors and messages, if any , will be part of the standard error response.

Inheritance
object
SearchResultCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class SearchResultCollection

Properties

Count

Declaration
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
Type Description
int?

Total number of items returned.

FacetedSearchAggregation

Declaration
[JsonProperty(PropertyName = "facetedSearchAggregation")]
public List<FacetedSearchAggregation> FacetedSearchAggregation { get; set; }
Property Value
Type Description
List<FacetedSearchAggregation>

Aggregations/facets on properties of data objects.

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<SearchResult> Items { get; set; }
Property Value
Type Description
List<SearchResult>

Search result set.

Query

Declaration
[JsonProperty(PropertyName = "query")]
public string Query { get; set; }
Property Value
Type Description
string

String that data objects are to be searched with.

SortableFields

Declaration
[JsonProperty(PropertyName = "sortableFields")]
public List<string> SortableFields { get; set; }
Property Value
Type Description
List<string>

A list of fields or properties used in the sorting of a search result.

In this article
Back to top