Show / Hide Table of Contents

Class SearchTermSummary

Summary of a term associated with an object. This is a brief summary returned as part of the search result.

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

Properties

DisplayName

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

A user-friendly display name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Remarks

Required

GlossaryKey

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

Unique id of the parent glossary.

GlossaryName

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

Name of the parent glossary.

Key

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

Unique term key that is immutable.

ParentTermKey

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

This terms parent term key. Will be null if the term has no parent term.

ParentTermName

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

Name of the parent term key. Will be null if the term has no parent term.

In this article
Back to top