Current section
Files
Jump to
Current section
Files
lib/docusign/model/connect_debug_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.ConnectDebugLog do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:connectConfig,
:errorDetails,
:eventDateTime,
:eventDescription,
:payload
]
@type t :: %__MODULE__{
:connectConfig => String.t(),
:errorDetails => ErrorDetails,
:eventDateTime => String.t(),
:eventDescription => String.t(),
:payload => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ConnectDebugLog do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:errorDetails, :struct, DocuSign.Model.ErrorDetails, options)
end
end