Show / Hide Table of Contents

Class GenericEntity

This is an extensible entity type for users, and the base entity type for some annotation formats.

Inheritance
object
Entity
GenericEntity
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class GenericEntity : Entity

Properties

DocumentEntityMetadata

Declaration
[JsonProperty(PropertyName = "documentEntityMetadata")]
public DocumentEntityMetadata DocumentEntityMetadata { get; set; }
Property Value
Type Description
DocumentEntityMetadata

ExtendedMetadata

Declaration
[JsonProperty(PropertyName = "extendedMetadata")]
public Dictionary<string, string> ExtendedMetadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For Example: {"bar-key": "value"}

Labels

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

A collection of label entities.

Remarks

Required

In this article
Back to top