Show / Hide Table of Contents

Class SuggestResults

The list of potential matches returned from the suggest operation for the given input text. The size of the list will be determined by the limit parameter.

Inheritance
object
SuggestResults
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 SuggestResults

Properties

InputText

Declaration
[Required(ErrorMessage = "InputText is required.")]
[JsonProperty(PropertyName = "inputText")]
public string InputText { get; set; }
Property Value
Type Description
string

Input string for which the potential matches are computed.

Remarks

Required

Items

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

List of suggestions.

SearchLatencyInMs

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

Time taken to compute the result, in milliseconds.

TotalCount

Declaration
[Required(ErrorMessage = "TotalCount is required.")]
[JsonProperty(PropertyName = "totalCount")]
public int? TotalCount { get; set; }
Property Value
Type Description
int?

Total number of items returned.

Remarks

Required

In this article
Back to top