class Google::Apis::SheetsV4::GetSpreadsheetByDataFilterRequest
The request for retrieving a Spreadsheet
.
Attributes
data_filters[RW]
The DataFilters used to select which ranges to retrieve from the spreadsheet. Corresponds to the JSON property `dataFilters` @return [Array<Google::Apis::SheetsV4::DataFilter>]
include_grid_data[RW]
True if grid data should be returned. This parameter is ignored if a field mask was set in the request. Corresponds to the JSON property `includeGridData` @return [Boolean]
include_grid_data?[RW]
True if grid data should be returned. This parameter is ignored if a field mask was set in the request. Corresponds to the JSON property `includeGridData` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 5809 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sheets_v4/classes.rb, line 5814 def update!(**args) @data_filters = args[:data_filters] if args.key?(:data_filters) @include_grid_data = args[:include_grid_data] if args.key?(:include_grid_data) end