class Google::Apis::SheetsV4::PivotGroupLimit

The count limit on rows or columns in the pivot group.

Attributes

apply_order[RW]

The order in which the group limit is applied to the pivot table. Pivot group limits are applied from lower to higher order number. Order numbers are normalized to consecutive integers from 0. For write request, to fully customize the applying orders, all pivot group limits should have this field set with an unique number. Otherwise, the order is determined by the index in the PivotTable.rows list and then the PivotTable.columns list. Corresponds to the JSON property `applyOrder` @return [Fixnum]

count_limit[RW]

The count limit. Corresponds to the JSON property `countLimit` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 7283
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 7288
def update!(**args)
  @apply_order = args[:apply_order] if args.key?(:apply_order)
  @count_limit = args[:count_limit] if args.key?(:count_limit)
end