lib/mail_slurp_api/model/export_link.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.ExportLink do
  @moduledoc """
  Export download link
  """

  @derive [Poison.Encoder]
  defstruct [
    :"downloadLink"
  ]

  @type t :: %__MODULE__{
    :"downloadLink" => String.t
  }
end

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