lib/mail_slurp_api/model/bounce_projection.ex

# 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.BounceProjection do
  @moduledoc """
  Bounced email event
  """

  @derive [Poison.Encoder]
  defstruct [
    :"id",
    :"sender",
    :"subject",
    :"createdAt",
    :"bounceMta",
    :"bounceType"
  ]

  @type t :: %__MODULE__{
    :"id" => String.t | nil,
    :"sender" => String.t,
    :"subject" => String.t | nil,
    :"createdAt" => DateTime.t,
    :"bounceMta" => String.t | nil,
    :"bounceType" => String.t | nil
  }
end

defimpl Poison.Decoder, for: MailSlurpAPI.Model.BounceProjection do
  def decode(value, _options) do
    value
  end
end