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
CompositeType
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class CompositeType : BaseType
Properties
ConfigDefinition
Declaration
[JsonProperty(PropertyName = "configDefinition")]
public ConfigDefinition ConfigDefinition { get; set; }
Property Value
Elements
Declaration
[JsonProperty(PropertyName = "elements")]
public List<TypedObject> Elements { get; set; }
Property Value
ParentType
Declaration
[JsonProperty(PropertyName = "parentType")]
public CompositeType ParentType { get; set; }
Property Value