class Google::Apis::BigqueryV2::ScriptStackFrame
Attributes
end_column[RW]
- Output-only
-
One-based end column.
Corresponds to the JSON property `endColumn` @return [Fixnum]
end_line[RW]
- Output-only
-
One-based end line.
Corresponds to the JSON property `endLine` @return [Fixnum]
procedure_id[RW]
- Output-only
-
Name of the active procedure, empty if in a top-level script.
Corresponds to the JSON property `procedureId` @return [String]
start_column[RW]
- Output-only
-
One-based start column.
Corresponds to the JSON property `startColumn` @return [Fixnum]
start_line[RW]
- Output-only
-
One-based start line.
Corresponds to the JSON property `startLine` @return [Fixnum]
text[RW]
- Output-only
-
Text of the current statement/expression.
Corresponds to the JSON property `text` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5889 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 5894 def update!(**args) @end_column = args[:end_column] if args.key?(:end_column) @end_line = args[:end_line] if args.key?(:end_line) @procedure_id = args[:procedure_id] if args.key?(:procedure_id) @start_column = args[:start_column] if args.key?(:start_column) @start_line = args[:start_line] if args.key?(:start_line) @text = args[:text] if args.key?(:text) end