Show / Hide Table of Contents

Class ScriptStackFrame

Inheritance
System.Object
ScriptStackFrame
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ScriptStackFrame : IDirectResponseSchema

Properties

EndColumn

[Output-only] One-based end column.

Declaration
[JsonProperty("endColumn")]
public virtual int? EndColumn { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

EndLine

[Output-only] One-based end line.

Declaration
[JsonProperty("endLine")]
public virtual int? EndLine { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ProcedureId

[Output-only] Name of the active procedure, empty if in a top-level script.

Declaration
[JsonProperty("procedureId")]
public virtual string ProcedureId { get; set; }
Property Value
Type Description
System.String

StartColumn

[Output-only] One-based start column.

Declaration
[JsonProperty("startColumn")]
public virtual int? StartColumn { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

StartLine

[Output-only] One-based start line.

Declaration
[JsonProperty("startLine")]
public virtual int? StartLine { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Text

[Output-only] Text of the current statement/expression.

Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top