Class: Google::Apis::BigqueryV2::RangeValue
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::RangeValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Represents the value of a range.
Instance Attribute Summary collapse
-
#end ⇒ Google::Apis::BigqueryV2::QueryParameterValue
The value of a query parameter.
-
#start ⇒ Google::Apis::BigqueryV2::QueryParameterValue
The value of a query parameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RangeValue
constructor
A new instance of RangeValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RangeValue
Returns a new instance of RangeValue.
8523 8524 8525 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8523 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end ⇒ Google::Apis::BigqueryV2::QueryParameterValue
The value of a query parameter.
Corresponds to the JSON property end
8516 8517 8518 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8516 def end @end end |
#start ⇒ Google::Apis::BigqueryV2::QueryParameterValue
The value of a query parameter.
Corresponds to the JSON property start
8521 8522 8523 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8521 def start @start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8528 8529 8530 8531 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8528 def update!(**args) @end = args[:end] if args.key?(:end) @start = args[:start] if args.key?(:start) end |