# 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.BillingPaymentResponse do @moduledoc """ Defines an billing payment response object. """ alias DocuSign.Deserializer alias DocuSign.Model.BillingPayment @derive Jason.Encoder defstruct [ :billingPayments ] @type t :: %__MODULE__{ :billingPayments => [BillingPayment.t()] | nil } def decode(value) do value |> Deserializer.deserialize(:billingPayments, :list, BillingPayment) end end