lib/mail_slurp_api/model/webhook_test_response.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.WebhookTestResponse do
  @moduledoc """
  
  """

  @derive [Poison.Encoder]
  defstruct [
    :"statusCode",
    :"message"
  ]

  @type t :: %__MODULE__{
    :"statusCode" => integer() | nil,
    :"message" => String.t | nil
  }
end

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