Class: Google::Apis::SheetsV4::UpdateDimensionGroupRequest

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

Overview

Updates the state of the specified group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateDimensionGroupRequest

Returns a new instance of UpdateDimensionGroupRequest.



10738
10739
10740
# File 'lib/google/apis/sheets_v4/classes.rb', line 10738

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

Instance Attribute Details

#dimension_groupGoogle::Apis::SheetsV4::DimensionGroup

A group over an interval of rows or columns on a sheet, which can contain or be contained within other groups. A group can be collapsed or expanded as a unit on the sheet. Corresponds to the JSON property dimensionGroup



10729
10730
10731
# File 'lib/google/apis/sheets_v4/classes.rb', line 10729

def dimension_group
  @dimension_group
end

#fieldsString

The fields that should be updated. At least one field must be specified. The root dimensionGroup is implied and should not be specified. A single "*" can be used as short-hand for listing every field. Corresponds to the JSON property fields

Returns:

  • (String)


10736
10737
10738
# File 'lib/google/apis/sheets_v4/classes.rb', line 10736

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10743
10744
10745
10746
# File 'lib/google/apis/sheets_v4/classes.rb', line 10743

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