Class: Google::Apis::BigqueryV2::RangeValue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RangeValue

Returns a new instance of RangeValue.



7819
7820
7821
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7819

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#endGoogle::Apis::BigqueryV2::QueryParameterValue

The value of a query parameter. Corresponds to the JSON property end



7812
7813
7814
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7812

def end
  @end
end

#startGoogle::Apis::BigqueryV2::QueryParameterValue

The value of a query parameter. Corresponds to the JSON property start



7817
7818
7819
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7817

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7824
7825
7826
7827
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7824

def update!(**args)
  @end = args[:end] if args.key?(:end)
  @start = args[:start] if args.key?(:start)
end