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.



11129
11130
11131
# File 'generated/google/apis/sheets_v4/classes.rb', line 11129

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



11120
11121
11122
# File 'generated/google/apis/sheets_v4/classes.rb', line 11120

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)


11127
11128
11129
# File 'generated/google/apis/sheets_v4/classes.rb', line 11127

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11134
11135
11136
11137
# File 'generated/google/apis/sheets_v4/classes.rb', line 11134

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