lib/spatio/model/workspace_organization.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.WorkspaceOrganization do
  @moduledoc """
  Compact org summary embedded on single-get responses.
  """

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

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

  def decode(value) do
    value
  end
end