Class: Google::Apis::SheetsV4::ExtendedValue
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::ExtendedValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb
Overview
The kinds of value that a cell in a spreadsheet can have.
Instance Attribute Summary collapse
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Represents a boolean value.
-
#error_value ⇒ Google::Apis::SheetsV4::ErrorValue
An error in a cell.
-
#formula_value ⇒ String
Represents a formula.
-
#number_value ⇒ Float
Represents a double value.
-
#string_value ⇒ String
Represents a string value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExtendedValue
constructor
A new instance of ExtendedValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExtendedValue
Returns a new instance of ExtendedValue.
5495 5496 5497 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5495 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_value ⇒ Boolean Also known as: bool_value?
Represents a boolean value.
Corresponds to the JSON property boolValue
5469 5470 5471 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5469 def bool_value @bool_value end |
#error_value ⇒ Google::Apis::SheetsV4::ErrorValue
An error in a cell.
Corresponds to the JSON property errorValue
5475 5476 5477 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5475 def error_value @error_value end |
#formula_value ⇒ String
Represents a formula.
Corresponds to the JSON property formulaValue
5480 5481 5482 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5480 def formula_value @formula_value end |
#number_value ⇒ Float
Represents a double value. Note: Dates, Times and DateTimes are represented as
doubles in SERIAL_NUMBER format.
Corresponds to the JSON property numberValue
5486 5487 5488 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5486 def number_value @number_value end |
#string_value ⇒ String
Represents a string value. Leading single quotes are not included. For example,
if the user typed '123
into the UI, this would be represented as a
stringValue
of "123"
.
Corresponds to the JSON property stringValue
5493 5494 5495 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5493 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5500 5501 5502 5503 5504 5505 5506 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5500 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @error_value = args[:error_value] if args.key?(:error_value) @formula_value = args[:formula_value] if args.key?(:formula_value) @number_value = args[:number_value] if args.key?(:number_value) @string_value = args[:string_value] if args.key?(:string_value) end |