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