Class: Google::Apis::SheetsV4::PivotGroupValueMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb

Overview

Metadata about a value in a pivot grouping.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PivotGroupValueMetadata

Returns a new instance of PivotGroupValueMetadata.



7534
7535
7536
# File 'generated/google/apis/sheets_v4/classes.rb', line 7534

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

Instance Attribute Details

#collapsedBoolean Also known as: collapsed?

True if the data corresponding to the value is collapsed. Corresponds to the JSON property collapsed

Returns:

  • (Boolean)


7526
7527
7528
# File 'generated/google/apis/sheets_v4/classes.rb', line 7526

def collapsed
  @collapsed
end

#valueGoogle::Apis::SheetsV4::ExtendedValue

The kinds of value that a cell in a spreadsheet can have. Corresponds to the JSON property value



7532
7533
7534
# File 'generated/google/apis/sheets_v4/classes.rb', line 7532

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7539
7540
7541
7542
# File 'generated/google/apis/sheets_v4/classes.rb', line 7539

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