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

  @derive [Poison.Encoder]
  defstruct [
    :amount,
    :description,
    :paymentDate,
    :paymentId,
    :paymentNumber
  ]

  @type t :: %__MODULE__{
          :amount => String.t() | nil,
          :description => String.t() | nil,
          :paymentDate => String.t() | nil,
          :paymentId => String.t() | nil,
          :paymentNumber => String.t() | nil
        }
end

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