lib/vr_chat/model/avatar_unity_package_url_object.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 VRChat.Model.AvatarUnityPackageUrlObject do
  @moduledoc """
  **Deprecation:** `Object` has unknown usage/fields, and is always empty. Use normal `Url` field instead.
  """

  @derive [Poison.Encoder]
  defstruct [
    :unityPackageUrl
  ]

  @type t :: %__MODULE__{
    :unityPackageUrl => String.t | nil
  }
end

defimpl Poison.Decoder, for: VRChat.Model.AvatarUnityPackageUrlObject do
  def decode(value, _options) do
    value
  end
end