Current section
Files
Jump to
Current section
Files
lib/docusign/model/billing_payment_item.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.BillingPaymentItem do
@moduledoc """
Defines a billing payment request object.
"""
@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.BillingPaymentItem do
def decode(value, _options) do
value
end
end