# 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.WebhookRedriveResult do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"message", :"success", :"webhookResultId" ] @type t :: %__MODULE__{ :"message" => String.t | nil, :"success" => boolean(), :"webhookResultId" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.WebhookRedriveResult do def decode(value, _options) do value end end