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