Skip to main content

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

  """

  @derive [Poison.Encoder]
  defstruct [
    :displayLevelCode,
    :receiveInResponse,
    :ssn4
  ]

  @type t :: %__MODULE__{
          :displayLevelCode => String.t(),
          :receiveInResponse => String.t(),
          :ssn4 => String.t()
        }
end

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