class Google::Apis::SheetsV4::ManualRuleGroup
A group name and a list of items from the source data that should be placed in the group with this name.
Attributes
group_name[RW]
The kinds of value that a cell in a spreadsheet can have. Corresponds to the JSON property `groupName` @return [Google::Apis::SheetsV4::ExtendedValue]
items[RW]
The items in the source data that should be placed into this group. Each item may be a string, number, or boolean. Items may appear in at most one group within a given ManualRule
. Items that do not appear in any group will appear on their own. Corresponds to the JSON property `items` @return [Array<Google::Apis::SheetsV4::ExtendedValue>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 6562 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 6567 def update!(**args) @group_name = args[:group_name] if args.key?(:group_name) @items = args[:items] if args.key?(:items) end