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

The kinds of value that a cell in a spreadsheet can have.

Attributes

  • boolValue (boolean()): Represents a boolean value. Defaults to: null.
  • errorValue (ErrorValue): Represents an error. This field is read-only. Defaults to: null.
  • formulaValue (String.t): Represents a formula. Defaults to: null.
  • numberValue (float()): Represents a double value. Note: Dates, Times and DateTimes are represented as doubles in "serial number" format. Defaults to: null.
  • stringValue (String.t): Represents a string value. Leading single quotes are not included. For example, if the user typed `'123` into the UI, this would be represented as a `stringValue` of `"123"`. 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.ExtendedValue{
  boolValue: any(),
  errorValue: GoogleApi.Sheets.V4.Model.ErrorValue.t(),
  formulaValue: any(),
  numberValue: any(),
  stringValue: 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.