lib/spatio/model/cell.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.22.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Spatio.Model.Cell do
@moduledoc """
A single cell. `value` is the JSON-serializable cell contents; interpretation is provider-specific.
"""
@derive JSON.Encoder
defstruct [
:row,
:column,
:value
]
@type t :: %__MODULE__{
:row => integer(),
:column => String.t,
:value => any() | nil
}
def decode(value) do
value
end
end