View Source GoogleApi.Sheets.V4.Model.BatchGetValuesByDataFilterRequest (google_api_sheets v0.34.0)
The request for retrieving a range of values in a spreadsheet selected by a set of DataFilters.
Attributes
-
dataFilters
(type:list(GoogleApi.Sheets.V4.Model.DataFilter.t)
, default:nil
) - The data filters used to match the ranges of values to retrieve. Ranges that match any of the specified data filters are included in the response. -
dateTimeRenderOption
(type:String.t
, default:nil
) - How dates, times, and durations should be represented in the output. This is ignored if value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER. -
majorDimension
(type:String.t
, default:nil
) - The major dimension that results should use. For example, if the spreadsheet data is:A1=1,B1=2,A2=3,B2=4
, then a request that selects that range and setsmajorDimension=ROWS
returns[[1,2],[3,4]]
, whereas a request that setsmajorDimension=COLUMNS
returns[[1,3],[2,4]]
. -
valueRenderOption
(type:String.t
, default:nil
) - How values should be represented in the output. The default render option is FORMATTED_VALUE.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Sheets.V4.Model.BatchGetValuesByDataFilterRequest{ dataFilters: [GoogleApi.Sheets.V4.Model.DataFilter.t()] | nil, dateTimeRenderOption: String.t() | nil, majorDimension: String.t() | nil, valueRenderOption: String.t() | nil }