google_api_sheets v0.16.0 GoogleApi.Sheets.V4.Model.BatchGetValuesByDataFilterRequest View Source

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 will be 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 [DateTimeRenderOption.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 sets majorDimension=ROWS will return [[1,2],[3,4]], whereas a request that sets majorDimension=COLUMNS will return [[1,3],[2,4]].

  • valueRenderOption (type: String.t, default: nil) - How values should be represented in the output. The default render option is ValueRenderOption.FORMATTED_VALUE.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t()

View Source
t() :: %GoogleApi.Sheets.V4.Model.BatchGetValuesByDataFilterRequest{
  dataFilters: [GoogleApi.Sheets.V4.Model.DataFilter.t()],
  dateTimeRenderOption: String.t(),
  majorDimension: String.t(),
  valueRenderOption: String.t()
}

Link to this section Functions

Link to this function

decode(value, options)

View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.