Current section

Files

Jump to
docusign lib docusign model billing_invoice_item.ex
Raw

lib/docusign/model/billing_invoice_item.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.BillingInvoiceItem do
@moduledoc """
Contains information about an item on a billing invoice.
"""
@derive Jason.Encoder
defstruct [
:chargeAmount,
:chargeName,
:invoiceItemId,
:quantity,
:taxAmount,
:taxExemptAmount,
:unitPrice
]
@type t :: %__MODULE__{
:chargeAmount => String.t() | nil,
:chargeName => String.t() | nil,
:invoiceItemId => String.t() | nil,
:quantity => String.t() | nil,
:taxAmount => String.t() | nil,
:taxExemptAmount => String.t() | nil,
:unitPrice => String.t() | nil
}
def decode(value) do
value
end
end