lib/mail_slurp_api/model/email_preview_urls.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.EmailPreviewUrls do
  @moduledoc """
  URLs for email body
  """

  @derive [Poison.Encoder]
  defstruct [
    :"rawSmtpMessageUrl",
    :"plainHtmlBodyUrl"
  ]

  @type t :: %__MODULE__{
    :"rawSmtpMessageUrl" => String.t,
    :"plainHtmlBodyUrl" => String.t
  }
end

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