google_api_sheets v0.2.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 ([DataFilter]): 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. Defaults to: null.
  • dateTimeRenderOption (String.t): 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]. Defaults to: null.

    • Enum - one of [SERIAL_NUMBER, FORMATTED_STRING]
  • majorDimension (String.t): 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]]`. Defaults to: null.

    • Enum - one of [DIMENSION_UNSPECIFIED, ROWS, COLUMNS]
  • valueRenderOption (String.t): How values should be represented in the output. The default render option is ValueRenderOption.FORMATTED_VALUE. Defaults to: null.

    • Enum - one of [FORMATTED_VALUE, UNFORMATTED_VALUE, FORMULA]

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: any(),
  majorDimension: any(),
  valueRenderOption: any()
}

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.