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

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

Updates the state of the specified group.

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

Returns a new instance of UpdateDimensionGroupRequest



9381
9382
9383
# File 'generated/google/apis/sheets_v4/classes.rb', line 9381

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



9372
9373
9374
# File 'generated/google/apis/sheets_v4/classes.rb', line 9372

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)


9379
9380
9381
# File 'generated/google/apis/sheets_v4/classes.rb', line 9379

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9386
9387
9388
9389
# File 'generated/google/apis/sheets_v4/classes.rb', line 9386

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