Show / Hide Table of Contents

Class ConfigParameterDefinition

The configurable properties of an object type.

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

Properties

ClassFieldName

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

The parameter class field name.

DefaultValue

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

The default value for the parameter.

Description

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

A user defined description for the object.

IsClassFieldValue

Declaration
[JsonProperty(PropertyName = "isClassFieldValue")]
public bool? IsClassFieldValue { get; set; }
Property Value
Type Description
bool?

Specifies whether the parameter is a class field or not.

IsStatic

Declaration
[JsonProperty(PropertyName = "isStatic")]
public bool? IsStatic { get; set; }
Property Value
Type Description
bool?

Specifies whether the parameter is static or not.

ParameterName

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

This object represents the configurable properties for an object type.

ParameterType

Declaration
[JsonProperty(PropertyName = "parameterType")]
public BaseType ParameterType { get; set; }
Property Value
Type Description
BaseType
In this article
Back to top