Show / Hide Table of Contents

Class MaterializedCompositeType

A MaterializedCompositeType represents a type that is composed of a list of sub-types, for example an Address type. The sub-types can be simple DataType or other CompositeType objects. Typically, a CompositeType may represent an arbitrarily deep hierarchy of types.

Inheritance
object
BaseType
MaterializedCompositeType
Inherited Members
BaseType.Key
BaseType.ModelVersion
BaseType.ParentRef
BaseType.Name
BaseType.ObjectStatus
BaseType.Description
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 MaterializedCompositeType : BaseType

Properties

ConfigDefinition

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

Elements

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

An array of elements.

PathNames

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

An array of path names corresponding to the elements. The path names are used when referring to the field in an expression.

In this article
Back to top