google_api_sheets v0.2.0 GoogleApi.Sheets.V4.Model.UpdateCellsRequest View Source

Updates all cells in a range with new data.

Attributes

  • fields (String.t): The fields of CellData that should be updated. At least one field must be specified. The root is the CellData; 'row.values.' should not be specified. A single `"*"` can be used as short-hand for listing every field. Defaults to: null.
  • range (GridRange): The range to write data to. If the data in rows does not cover the entire requested range, the fields matching those set in fields will be cleared. Defaults to: null.
  • rows ([RowData]): The data to write. Defaults to: null.
  • start (GridCoordinate): The coordinate to start writing data at. Any number of rows and columns (including a different number of columns per row) may be written. Defaults to: null.

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.UpdateCellsRequest{
  fields: any(),
  range: GoogleApi.Sheets.V4.Model.GridRange.t(),
  rows: [GoogleApi.Sheets.V4.Model.RowData.t()],
  start: GoogleApi.Sheets.V4.Model.GridCoordinate.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.