Class SqlOutParamDetails
Position and SQL Type of PL/SQL OUT parameter
Inherited Members
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class SqlOutParamDetails
Properties
OutParamPosition
Declaration
[Required(ErrorMessage = "OutParamPosition is required.")]
[JsonProperty(PropertyName = "outParamPosition")]
public int? OutParamPosition { get; set; }
Property Value
Type | Description |
---|---|
int? | Position of PL/SQL procedure OUT parameter |
Remarks
Required
OutParamType
Declaration
[Required(ErrorMessage = "OutParamType is required.")]
[JsonProperty(PropertyName = "outParamType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SqlOutParamTypes? OutParamType { get; set; }
Property Value
Type | Description |
---|---|
SqlOutParamTypes? | SQL Type of PL/SQL procedure OUT parameter |
Remarks
Required