lib/mail_slurp_api/model/inbox_ruleset_test_options.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.InboxRulesetTestOptions do
  @moduledoc """
  Test options for inbox ruleset
  """

  @derive [Poison.Encoder]
  defstruct [
    :"testTarget"
  ]

  @type t :: %__MODULE__{
    :"testTarget" => String.t
  }
end

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