lib/docusign/model/e_note_configurations.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule DocuSign.Model.ENoteConfigurations do
  @moduledoc """

  """

  @derive [Poison.Encoder]
  defstruct [
    :apiKey,
    :connectConfigured,
    :eNoteConfigured,
    :organization,
    :password,
    :userName
  ]

  @type t :: %__MODULE__{
          :apiKey => String.t() | nil,
          :connectConfigured => String.t() | nil,
          :eNoteConfigured => String.t() | nil,
          :organization => String.t() | nil,
          :password => String.t() | nil,
          :userName => String.t() | nil
        }
end

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