Class: Google::Apis::SheetsV4::UpdateBandingRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::UpdateBandingRequest
 
- 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 properties of the supplied banded range.
Instance Attribute Summary collapse
- 
  
    
      #banded_range  ⇒ Google::Apis::SheetsV4::BandedRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A banded (alternating colors) range in a sheet. 
- 
  
    
      #fields  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fields that should be updated. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpdateBandingRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UpdateBandingRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateBandingRequest
Returns a new instance of UpdateBandingRequest
| 9038 9039 9040 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9038 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#banded_range ⇒ Google::Apis::SheetsV4::BandedRange
A banded (alternating colors) range in a sheet.
Corresponds to the JSON property bandedRange
| 9029 9030 9031 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9029 def banded_range @banded_range end | 
#fields ⇒ String
The fields that should be updated.  At least one field must be specified.
The root bandedRange 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
| 9036 9037 9038 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9036 def fields @fields end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 9043 9044 9045 9046 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9043 def update!(**args) @banded_range = args[:banded_range] if args.key?(:banded_range) @fields = args[:fields] if args.key?(:fields) end |