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