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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_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
| 9372 9373 9374 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9372 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
| 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 |