lib/mail_slurp_api/model/inbox_forwarder_event_projection.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 MailSlurpAPI.Model.InboxForwarderEventProjection do
  @moduledoc """
  Inbox forwarder event
  """

  @derive [Poison.Encoder]
  defstruct [
    :"message",
    :"id",
    :"status",
    :"userId",
    :"emailId",
    :"inboxId",
    :"createdAt",
    :"forwarderId"
  ]

  @type t :: %__MODULE__{
    :"message" => String.t | nil,
    :"id" => String.t | nil,
    :"status" => String.t | nil,
    :"userId" => String.t | nil,
    :"emailId" => String.t | nil,
    :"inboxId" => String.t | nil,
    :"createdAt" => DateTime.t,
    :"forwarderId" => String.t | nil
  }
end

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