Show / Hide Table of Contents

Class DataType

A DataType object is a simple primitive type that describes the type of a single atomic unit of data. For example, INT, VARCHAR, NUMBER, and so on.

Inheritance
object
BaseType
DataType
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 DataType : BaseType

Properties

ConfigDefinition

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

DtType

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

The data type.

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