Current section

Files

Jump to
docusign lib docusign model payments.ex
Raw

lib/docusign/model/payments.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.Payments do
@moduledoc """
Payments
"""
@derive Jason.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
}
def decode(value) do
value
end
end