lib/vrchat/model/two_factor_auth_code.ex
# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule VRChat.Model.TwoFactorAuthCode do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:code
]
@type t :: %__MODULE__{
:code => String.t()
}
end
defimpl Poison.Decoder, for: VRChat.Model.TwoFactorAuthCode do
def decode(value, _options) do
value
end
end