Current section
Files
Jump to
Current section
Files
lib/ory/model/version.ex
# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule Ory.Model.Version do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:version
]
@type t :: %__MODULE__{
:version => String.t | nil
}
end
defimpl Poison.Decoder, for: Ory.Model.Version do
def decode(value, _options) do
value
end
end