Show / Hide Table of Contents

Class StatementOutput

The execution output of a statement.

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

Properties

Data

Declaration
[JsonProperty(PropertyName = "data")]
public StatementOutputData Data { get; set; }
Property Value
Type Description
StatementOutputData

ErrorName

Declaration
[JsonProperty(PropertyName = "errorName")]
public string ErrorName { get; set; }
Property Value
Type Description
string

The name of the error in the statement output.

ErrorValue

Declaration
[JsonProperty(PropertyName = "errorValue")]
public string ErrorValue { get; set; }
Property Value
Type Description
string

The value of the error in the statement output.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StatementOutput.StatusEnum? Status { get; set; }
Property Value
Type Description
StatementOutput.StatusEnum?

Status of the statement output.

Traceback

Declaration
[JsonProperty(PropertyName = "traceback")]
public List<string> Traceback { get; set; }
Property Value
Type Description
List<string>

The traceback of the statement output.

In this article
Back to top