lib/chat_kitty/model/emoji_properties.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 ChatKitty.Model.EmojiProperties do
  @moduledoc """
  The emoji these users reacted with
  """

  @derive [Poison.Encoder]
  defstruct [
    :"aliases",
    :"character",
    :"description",
    :"tags"
  ]

  @type t :: %__MODULE__{
    :"aliases" => [String.t],
    :"character" => String.t,
    :"description" => String.t,
    :"tags" => [String.t]
  }
end

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