# 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.WebhookProjection do @moduledoc """ Representation of a webhook """ @derive [Poison.Encoder] defstruct [ :"createdAt", :"id", :"inboxId", :"name", :"updatedAt", :"url" ] @type t :: %__MODULE__{ :"createdAt" => DateTime.t, :"id" => String.t, :"inboxId" => String.t, :"name" => String.t | nil, :"updatedAt" => DateTime.t, :"url" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.WebhookProjection do def decode(value, _options) do value end end