Show / Hide Table of Contents

Class ParameterValue

User defined value for a parameter.

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

Properties

RootObjectValue

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

This can be any object such as a file entity, a schema, or a table.

SimpleValue

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

A simple value for the parameter.

In this article
Back to top