# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule ExVcom.Model.UserResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:data
]
@type t :: %__MODULE__{
:data => ExVcom.Model.User.t()
}
end
defimpl Poison.Decoder, for: ExVcom.Model.UserResponse do
import ExVcom.Deserializer
def decode(value, options) do
value
|> deserialize(:data, :struct, ExVcom.Model.User, options)
end
end