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.



8839
8840
8841
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8839

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



8832
8833
8834
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8832

def end
  @end
end

#startGoogle::Apis::BigqueryV2::QueryParameterValue

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



8837
8838
8839
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8837

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8844
8845
8846
8847
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8844

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