Skip to main content

lib/docusign/model/api_request_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.ApiRequestLog do
  @moduledoc """
  Contains API request log information.
  """

  @derive [Poison.Encoder]
  defstruct [
    :createdDateTime,
    :description,
    :requestLogId,
    :status
  ]

  @type t :: %__MODULE__{
          :createdDateTime => String.t(),
          :description => String.t(),
          :requestLogId => String.t(),
          :status => String.t()
        }
end

defimpl Poison.Decoder, for: DocuSign.Model.ApiRequestLog do
  def decode(value, _options) do
    value
  end
end