Skip to main content

lib/docusign/model/e_note_configurations.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.ENoteConfigurations do
  @moduledoc """

  """

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

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

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