# 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.TrackingPixelProjection do @moduledoc """ Tracking pixel data """ @derive [Poison.Encoder] defstruct [ :"name", :"id", :"userId", :"inboxId", :"sentEmailId", :"createdAt", :"recipient", :"seen", :"seenAt" ] @type t :: %__MODULE__{ :"name" => String.t | nil, :"id" => String.t, :"userId" => String.t, :"inboxId" => String.t | nil, :"sentEmailId" => String.t | nil, :"createdAt" => DateTime.t, :"recipient" => String.t | nil, :"seen" => boolean(), :"seenAt" => DateTime.t | nil } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.TrackingPixelProjection do def decode(value, _options) do value end end