Class: Google::Apis::SheetsV4::UpdateDimensionGroupRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::UpdateDimensionGroupRequest
- 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
-
#dimension_group ⇒ Google::Apis::SheetsV4::DimensionGroup
A group over an interval of rows or columns on a sheet, which can contain or be contained within other groups.
-
#fields ⇒ String
The fields that should be updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateDimensionGroupRequest
constructor
A new instance of UpdateDimensionGroupRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateDimensionGroupRequest
Returns a new instance of UpdateDimensionGroupRequest.
10577 10578 10579 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 10577 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_group ⇒ Google::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
10568 10569 10570 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 10568 def dimension_group @dimension_group end |
#fields ⇒ String
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
10575 10576 10577 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 10575 def fields @fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10582 10583 10584 10585 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 10582 def update!(**args) @dimension_group = args[:dimension_group] if args.key?(:dimension_group) @fields = args[:fields] if args.key?(:fields) end |