Class: Google::Apis::SheetsV4::ClearBasicFilterRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SheetsV4::ClearBasicFilterRequest
 
 
- 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
Clears the basic filter, if any exists on the sheet.
Instance Attribute Summary collapse
- 
  
    
      #sheet_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The sheet ID on which the basic filter should be cleared.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClearBasicFilterRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ClearBasicFilterRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClearBasicFilterRequest
Returns a new instance of ClearBasicFilterRequest
      2984 2985 2986  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 2984 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#sheet_id ⇒ Fixnum
The sheet ID on which the basic filter should be cleared.
Corresponds to the JSON property sheetId
      2982 2983 2984  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 2982 def sheet_id @sheet_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2989 2990 2991  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 2989 def update!(**args) @sheet_id = args[:sheet_id] if args.key?(:sheet_id) end  |