Show / Hide Table of Contents

Class ConfiguredType

A ConfiguredType represents a type that has built-in configuration to the type itself. An example is a SSN type whose basic type is VARCHAR, but the type itself also has a built-in configuration like length=10.

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

Properties

ConfigDefinition

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

ConfigValues

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

WrappedType

Declaration
[JsonProperty(PropertyName = "wrappedType")]
public object WrappedType { get; set; }
Property Value
Type Description
object

A wrapped type, may be a string or a BaseType.

In this article
Back to top