Show / Hide Table of Contents

Class SqlInParamDetails

Position and value for an IN parameter of PL/SQL statement

Inheritance
object
SqlInParamDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class SqlInParamDetails

Properties

InParamPosition

Declaration
[Required(ErrorMessage = "InParamPosition is required.")]
[JsonProperty(PropertyName = "inParamPosition")]
public int? InParamPosition { get; set; }
Property Value
Type Description
int?

Position of IN parameter

Remarks

Required

InParamValue

Declaration
[Required(ErrorMessage = "InParamValue is required.")]
[JsonProperty(PropertyName = "inParamValue")]
public string InParamValue { get; set; }
Property Value
Type Description
string

Value of IN parameter

Remarks

Required

In this article
Back to top