Spatio.Model.Row (spatio_sdk v0.0.2)

A spreadsheet row. cells is a column-name → value map. Values are JSON primitives (string, number, boolean) or null; provider- specific richer types (formula, date) are encoded as strings.

Summary

Types

t()

@type t() :: %Spatio.Model.Row{
  cells: %{optional(String.t()) => any()},
  index: integer()
}

Functions

decode(value)