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

  @derive JSON.Encoder
  defstruct [
    :active,
    :token_type,
    :client_id,
    :user_id,
    :workspace_id,
    :scope,
    :exp
  ]

  @type t :: %__MODULE__{
    :active => boolean(),
    :token_type => String.t | nil,
    :client_id => String.t | nil,
    :user_id => String.t | nil,
    :workspace_id => String.t | nil,
    :scope => String.t | nil,
    :exp => integer() | nil
  }

  def decode(value) do
    value
  end
end