Current section
Files
Jump to
Current section
Files
lib/core_apis/model/session.ex
# NOTE: This file is auto generated by OpenAPI Generator 6.6.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule CoreAPIs.Model.Session do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:token
]
@type t :: %__MODULE__{
:token => String.t
}
end
defimpl Poison.Decoder, for: CoreAPIs.Model.Session do
def decode(value, _options) do
value
end
end