lib/mail_slurp_api/model/inbox_forwarder_dto.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.InboxForwarderDto do
  @moduledoc """
  Inbox forwarder
  """

  @derive [Poison.Encoder]
  defstruct [
    :"id",
    :"inboxId",
    :"field",
    :"match",
    :"forwardToRecipients",
    :"createdAt"
  ]

  @type t :: %__MODULE__{
    :"id" => String.t,
    :"inboxId" => String.t,
    :"field" => String.t,
    :"match" => String.t,
    :"forwardToRecipients" => [String.t],
    :"createdAt" => DateTime.t
  }
end

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