Show / Hide Table of Contents

Class JobOutBind

The details of the job out-bind variable.

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

Properties

DataType

Declaration
[Required(ErrorMessage = "DataType is required.")]
[JsonProperty(PropertyName = "dataType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobOutBind.DataTypeEnum? DataType { get; set; }
Property Value
Type Description
JobOutBind.DataTypeEnum?

The datatype of the out-bind variable.

Remarks

Required

Position

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

The position of the out-bind variable.

Remarks

Required

In this article
Back to top