Class: Google::Apis::SheetsV4::PivotFilterCriteria

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

Criteria for showing/hiding rows in a pivot table.

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) ⇒ PivotFilterCriteria

Returns a new instance of PivotFilterCriteria.



7268
7269
7270
# File 'generated/google/apis/sheets_v4/classes.rb', line 7268

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

Instance Attribute Details

#visible_valuesArray<String>

Values that should be included. Values not listed here are excluded. Corresponds to the JSON property visibleValues

Returns:

  • (Array<String>)


7266
7267
7268
# File 'generated/google/apis/sheets_v4/classes.rb', line 7266

def visible_values
  @visible_values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7273
7274
7275
# File 'generated/google/apis/sheets_v4/classes.rb', line 7273

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