lib/spatio/model/organization_workspaces_inner.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.OrganizationWorkspacesInner do
  @moduledoc """
  
  """

  @derive JSON.Encoder
  defstruct [
    :id,
    :name,
    :slug
  ]

  @type t :: %__MODULE__{
    :id => String.t,
    :name => String.t,
    :slug => String.t
  }

  def decode(value) do
    value
  end
end