# NOTE: This class is auto generated by the swagger code generator program. # https://github.com/swagger-api/swagger-codegen.git # Do not edit the class manually. defmodule DocuSign.Model.ExternalDocServiceErrorDetails do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :authenticationUrl, :errorCode, :message ] @type t :: %__MODULE__{ :authenticationUrl => String.t(), :errorCode => String.t(), :message => String.t() } end defimpl Poison.Decoder, for: DocuSign.Model.ExternalDocServiceErrorDetails do def decode(value, _options) do value end end