Class: Google::Apis::SheetsV4::ExtendedValue

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExtendedValue

Returns a new instance of ExtendedValue.



5401
5402
5403
# File 'lib/google/apis/sheets_v4/classes.rb', line 5401

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

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

Represents a boolean value. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


5375
5376
5377
# File 'lib/google/apis/sheets_v4/classes.rb', line 5375

def bool_value
  @bool_value
end

#error_valueGoogle::Apis::SheetsV4::ErrorValue

An error in a cell. Corresponds to the JSON property errorValue



5381
5382
5383
# File 'lib/google/apis/sheets_v4/classes.rb', line 5381

def error_value
  @error_value
end

#formula_valueString

Represents a formula. Corresponds to the JSON property formulaValue

Returns:

  • (String)


5386
5387
5388
# File 'lib/google/apis/sheets_v4/classes.rb', line 5386

def formula_value
  @formula_value
end

#number_valueFloat

Represents a double value. Note: Dates, Times and DateTimes are represented as doubles in SERIAL_NUMBER format. Corresponds to the JSON property numberValue

Returns:

  • (Float)


5392
5393
5394
# File 'lib/google/apis/sheets_v4/classes.rb', line 5392

def number_value
  @number_value
end

#string_valueString

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

Returns:

  • (String)


5399
5400
5401
# File 'lib/google/apis/sheets_v4/classes.rb', line 5399

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5406
5407
5408
5409
5410
5411
5412
# File 'lib/google/apis/sheets_v4/classes.rb', line 5406

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