# 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.BillingPayment do
@moduledoc """
Contains information on a billing plan.
"""
@derive [Poison.Encoder]
defstruct [
:amount,
:invoiceId,
:paymentId
]
@type t :: %__MODULE__{
:amount => String.t() | nil,
:invoiceId => String.t() | nil,
:paymentId => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.BillingPayment do
def decode(value, _options) do
value
end
end