Current section
Files
Jump to
Current section
Files
lib/docusign/model/connect_debug_log.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.ConnectDebugLog do
@moduledoc """
"""
alias DocuSign.Deserializer
alias DocuSign.Model.ErrorDetails
@derive Jason.Encoder
defstruct [
:connectConfig,
:errorDetails,
:eventDateTime,
:eventDescription,
:payload
]
@type t :: %__MODULE__{
:connectConfig => String.t() | nil,
:errorDetails => ErrorDetails.t() | nil,
:eventDateTime => String.t() | nil,
:eventDescription => String.t() | nil,
:payload => String.t() | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:errorDetails, :struct, ErrorDetails)
end
end