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
ConfiguredType
Assembly: OCI.DotNetSDK.Dataintegration.dll
public class ConfiguredType : BaseType
Properties
Declaration
[JsonProperty(PropertyName = "configDefinition")]
public ConfigDefinition ConfigDefinition { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "configValues")]
public ConfigValues ConfigValues { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "wrappedType")]
public object WrappedType { get; set; }
Property Value
Type |
Description |
object |
A wrapped type, may be a string or a BaseType.
|