# 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.Record do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:id,
:organization_id,
:record_type_id,
:name,
:attributes,
:metadata,
:created_at,
:updated_at
]
@type t :: %__MODULE__{
:id => String.t,
:organization_id => String.t | nil,
:record_type_id => String.t | nil,
:name => String.t | nil,
:attributes => %{optional(String.t) => any()} | nil,
:metadata => %{optional(String.t) => any()} | nil,
:created_at => DateTime.t | nil,
:updated_at => DateTime.t | nil
}
def decode(value) do
value
end
end