Show / Hide Table of Contents

Class OntologyClass

Images and ImageObjects can be labeled with an OntologyClass.

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

Properties

Name

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

The label name.

Remarks

Required

ParentNames

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

The label parents.

SynonymNames

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

The label synonyms.

In this article
Back to top