Class: Google::Apis::CloudsearchV1::Value
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::Value
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Definition of a single value with generic type.
Instance Attribute Summary collapse
-
#boolean_value ⇒ Boolean
(also: #boolean_value?)
Corresponds to the JSON property
booleanValue. -
#date_value ⇒ Google::Apis::CloudsearchV1::Date
Represents a whole calendar date, for example a date of birth.
-
#double_value ⇒ Float
Corresponds to the JSON property
doubleValue. -
#integer_value ⇒ Fixnum
Corresponds to the JSON property
integerValue. -
#string_value ⇒ String
Corresponds to the JSON property
stringValue. -
#timestamp_value ⇒ String
Corresponds to the JSON property
timestampValue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Value
constructor
A new instance of Value.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Value
Returns a new instance of Value.
6019 6020 6021 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6019 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boolean_value ⇒ Boolean Also known as: boolean_value?
Corresponds to the JSON property booleanValue
5987 5988 5989 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5987 def boolean_value @boolean_value end |
#date_value ⇒ Google::Apis::CloudsearchV1::Date
Represents a whole calendar date, for example a date of birth. The time of day
and time zone are either specified elsewhere or are not significant. The date
is relative to the Proleptic Gregorian Calendar. The date must be a valid calendar date
between the year 1 and 9999.
Corresponds to the JSON property dateValue
5997 5998 5999 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5997 def date_value @date_value end |
#double_value ⇒ Float
Corresponds to the JSON property doubleValue
6002 6003 6004 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6002 def double_value @double_value end |
#integer_value ⇒ Fixnum
Corresponds to the JSON property integerValue
6007 6008 6009 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6007 def integer_value @integer_value end |
#string_value ⇒ String
Corresponds to the JSON property stringValue
6012 6013 6014 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6012 def string_value @string_value end |
#timestamp_value ⇒ String
Corresponds to the JSON property timestampValue
6017 6018 6019 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6017 def @timestamp_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6024 6025 6026 6027 6028 6029 6030 6031 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6024 def update!(**args) @boolean_value = args[:boolean_value] if args.key?(:boolean_value) @date_value = args[:date_value] if args.key?(:date_value) @double_value = args[:double_value] if args.key?(:double_value) @integer_value = args[:integer_value] if args.key?(:integer_value) @string_value = args[:string_value] if args.key?(:string_value) @timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value) end |