Current section
Files
Jump to
Current section
Files
lib/docusign/model/connect_log.ex
# 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.ConnectLog do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:accountId,
:configUrl,
:connectDebugLog,
:connectId,
:created,
:email,
:envelopeId,
:error,
:failureId,
:failureUri,
:lastTry,
:logId,
:logUri,
:retryCount,
:retryUri,
:status,
:subject,
:userName
]
@type t :: %__MODULE__{
:accountId => String.t(),
:configUrl => String.t(),
:connectDebugLog => [ConnectDebugLog],
:connectId => String.t(),
:created => String.t(),
:email => String.t(),
:envelopeId => String.t(),
:error => String.t(),
:failureId => String.t(),
:failureUri => String.t(),
:lastTry => String.t(),
:logId => String.t(),
:logUri => String.t(),
:retryCount => String.t(),
:retryUri => String.t(),
:status => String.t(),
:subject => String.t(),
:userName => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ConnectLog do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:connectDebugLog, :list, DocuSign.Model.ConnectDebugLog, options)
end
end