Show / Hide Table of Contents

Class EnrichedEntity

This is used to specify runtime parameters for data entities such as files that need both the data entity and the format.

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

Properties

DataFormat

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

Entity

Declaration
[JsonProperty(PropertyName = "entity")]
public DataEntity Entity { get; set; }
Property Value
Type Description
DataEntity

ModelType

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

The model type for the entity which is referenced.

ParentRef

Declaration
[JsonProperty(PropertyName = "parentRef")]
public ParentReference ParentRef { get; set; }
Property Value
Type Description
ParentReference
In this article
Back to top