lib/mail_slurp_api/model/inbox_forwarder_test_result.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.InboxForwarderTestResult do
  @moduledoc """
  Results of inbox forwarder test
  """

  @derive [Poison.Encoder]
  defstruct [
    :"matches",
    :"doesMatch"
  ]

  @type t :: %__MODULE__{
    :"matches" => %{optional(String.t) => boolean()},
    :"doesMatch" => boolean()
  }
end

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