Class JobInBind
The details of the job in-bind variable.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class JobInBind
Properties
ArrayTypeName
Declaration
[JsonProperty(PropertyName = "arrayTypeName")]
public string ArrayTypeName { get; set; }
Property Value
Type | Description |
---|---|
string | The Oracle schema object name for the predefined type of array. |
DataType
Declaration
[Required(ErrorMessage = "DataType is required.")]
[JsonProperty(PropertyName = "dataType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobInBind.DataTypeEnum? DataType { get; set; }
Property Value
Type | Description |
---|---|
JobInBind.DataTypeEnum? | The datatype of the in-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 in-bind variable. |
Remarks
Required
Values
Declaration
[Required(ErrorMessage = "Values is required.")]
[JsonProperty(PropertyName = "values")]
public List<string> Values { get; set; }
Property Value
Type | Description |
---|---|
List<string> | The values for the in-bind variable. |
Remarks
Required