# 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.EventResult do @moduledoc """ Information about the result of an event. """ @derive Jason.Encoder defstruct [ :eventTimestamp, :failureDescription, :status, :vendorFailureStatusCode ] @type t :: %__MODULE__{ :eventTimestamp => String.t() | nil, :failureDescription => String.t() | nil, :status => String.t() | nil, :vendorFailureStatusCode => String.t() | nil } def decode(value) do value end end