Show / Hide Table of Contents

Class TermCollection

Results of a terms listing. Terms are defined in business glossary and are used in tagging catalog objects.

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

Properties

Count

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

Total number of items returned.

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<TermSummary> Items { get; set; }
Property Value
Type Description
List<TermSummary>

Collection of terms.

Remarks

Required

In this article
Back to top