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.



5403
5404
5405
# File 'lib/google/apis/sheets_v4/classes.rb', line 5403

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)


5377
5378
5379
# File 'lib/google/apis/sheets_v4/classes.rb', line 5377

def bool_value
  @bool_value
end

#error_valueGoogle::Apis::SheetsV4::ErrorValue

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



5383
5384
5385
# File 'lib/google/apis/sheets_v4/classes.rb', line 5383

def error_value
  @error_value
end

#formula_valueString

Represents a formula. Corresponds to the JSON property formulaValue

Returns:

  • (String)


5388
5389
5390
# File 'lib/google/apis/sheets_v4/classes.rb', line 5388

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)


5394
5395
5396
# File 'lib/google/apis/sheets_v4/classes.rb', line 5394

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)


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

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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