Show / Hide Table of Contents

Class SuggestListItem

Details of a potential match returned from the suggest operation for the given input text. by the limit parameter.

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

Properties

ObjectCount

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

The number of objects which contain this suggestion.

Suggestion

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

Potential string match. Matching is based on the frequency of usage within the catalog.

In this article
Back to top