lib/vr_chat/model/invite_request.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.InviteRequest do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:instanceId,
:messageSlot
]
@type t :: %__MODULE__{
:instanceId => String.t,
:messageSlot => integer() | nil
}
end
defimpl Poison.Decoder, for: VRChat.Model.InviteRequest do
def decode(value, _options) do
value
end
end