class Google::Apis::SheetsV4::PivotGroupValueMetadata

Metadata about a value in a pivot grouping.

Attributes

collapsed[RW]

True if the data corresponding to the value is collapsed. Corresponds to the JSON property `collapsed` @return [Boolean]

collapsed?[RW]

True if the data corresponding to the value is collapsed. Corresponds to the JSON property `collapsed` @return [Boolean]

value[RW]

The kinds of value that a cell in a spreadsheet can have. Corresponds to the JSON property `value` @return [Google::Apis::SheetsV4::ExtendedValue]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 7412
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sheets_v4/classes.rb, line 7417
def update!(**args)
  @collapsed = args[:collapsed] if args.key?(:collapsed)
  @value = args[:value] if args.key?(:value)
end