Show / Hide Table of Contents

Class ScriptStatistics

Inheritance
System.Object
ScriptStatistics
Implements
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 ScriptStatistics : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

EvaluationKind

[Output-only] Whether this child job was a statement or expression.

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

StackFrames

Stack trace showing the line/column/procedure name of each frame on the stack at the point where the current evaluation happened. The leaf frame is first, the primary script is last. Never empty.

Declaration
[JsonProperty("stackFrames")]
public virtual IList<ScriptStackFrame> StackFrames { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ScriptStackFrame>

Implements

IDirectResponseSchema
In This Article
Back to top