Show / Hide Table of Contents

Class CompositeType

A CompositeType 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
CompositeType
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 CompositeType : BaseType

Properties

ConfigDefinition

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

Elements

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

An array of elements.

ParentType

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