Class: Google::Apis::SheetsV4::DeleteBandingRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::DeleteBandingRequest
 
- 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
Removes the banded range with the given ID from the spreadsheet.
Instance Attribute Summary collapse
- 
  
    
      #banded_range_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the banded range to delete. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DeleteBandingRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DeleteBandingRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeleteBandingRequest
Returns a new instance of DeleteBandingRequest
| 3638 3639 3640 | # File 'generated/google/apis/sheets_v4/classes.rb', line 3638 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#banded_range_id ⇒ Fixnum
The ID of the banded range to delete.
Corresponds to the JSON property bandedRangeId
| 3636 3637 3638 | # File 'generated/google/apis/sheets_v4/classes.rb', line 3636 def banded_range_id @banded_range_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3643 3644 3645 | # File 'generated/google/apis/sheets_v4/classes.rb', line 3643 def update!(**args) @banded_range_id = args[:banded_range_id] if args.key?(:banded_range_id) end |