Class: Google::Apis::SheetsV4::GetSpreadsheetByDataFilterRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::GetSpreadsheetByDataFilterRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb
Overview
The request for retrieving a Spreadsheet.
Instance Attribute Summary collapse
-
#data_filters ⇒ Array<Google::Apis::SheetsV4::DataFilter>
The DataFilters used to select which ranges to retrieve from the spreadsheet.
-
#exclude_tables_in_banded_ranges ⇒ Boolean
(also: #exclude_tables_in_banded_ranges?)
True if tables should be excluded in the banded ranges.
-
#include_grid_data ⇒ Boolean
(also: #include_grid_data?)
True if grid data should be returned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GetSpreadsheetByDataFilterRequest
constructor
A new instance of GetSpreadsheetByDataFilterRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GetSpreadsheetByDataFilterRequest
Returns a new instance of GetSpreadsheetByDataFilterRequest.
6061 6062 6063 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 6061 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_filters ⇒ Array<Google::Apis::SheetsV4::DataFilter>
The DataFilters used to select which ranges to retrieve from the spreadsheet.
Corresponds to the JSON property dataFilters
6046 6047 6048 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 6046 def data_filters @data_filters end |
#exclude_tables_in_banded_ranges ⇒ Boolean Also known as: exclude_tables_in_banded_ranges?
True if tables should be excluded in the banded ranges. False if not set.
Corresponds to the JSON property excludeTablesInBandedRanges
6051 6052 6053 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 6051 def exclude_tables_in_banded_ranges @exclude_tables_in_banded_ranges end |
#include_grid_data ⇒ Boolean Also known as: include_grid_data?
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
6058 6059 6060 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 6058 def include_grid_data @include_grid_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6066 6067 6068 6069 6070 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 6066 def update!(**args) @data_filters = args[:data_filters] if args.key?(:data_filters) @exclude_tables_in_banded_ranges = args[:exclude_tables_in_banded_ranges] if args.key?(:exclude_tables_in_banded_ranges) @include_grid_data = args[:include_grid_data] if args.key?(:include_grid_data) end |