Show / Hide Table of Contents

Class StructuredType

A StructuredType object represents a data type that exists in a physical data asset object such as a table column, but is more complex. For example, an Oracle database OBJECT type. It can be composed of multiple DataType objects.

Inheritance
object
StructuredType
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 StructuredType

Properties

ConfigDefinition

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

DtType

Declaration
[JsonProperty(PropertyName = "dtType")]
[JsonConverter(typeof(StringEnumConverter))]
public StructuredType.DtTypeEnum? DtType { get; set; }
Property Value
Type Description
StructuredType.DtTypeEnum?

The data type.

Schema

Declaration
[JsonProperty(PropertyName = "schema")]
public BaseType Schema { get; set; }
Property Value
Type Description
BaseType

TypeSystemName

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

The data type system name.

In this article
Back to top