|
10 | 10 | * @property string $id Unique identifier for the object.
|
11 | 11 | * @property string $object String representing the object's type. Objects of the same type share the same value.
|
12 | 12 | * @property int $amount The integer amount in cents (or local equivalent) representing the gross amount being credited for this line item, excluding (exclusive) tax and discounts.
|
13 |
| - * @property null|int $amount_excluding_tax The integer amount in cents (or local equivalent) representing the amount being credited for this line item, excluding all tax and discounts. |
14 | 13 | * @property null|string $description Description of the item being credited.
|
15 | 14 | * @property int $discount_amount The integer amount in cents (or local equivalent) representing the discount being credited for this line item.
|
16 | 15 | * @property ((object{amount: int, discount: string|\Stripe\Discount}&\Stripe\StripeObject&\stdClass))[] $discount_amounts The amount of discount calculated per discount for this line item
|
17 | 16 | * @property null|string $invoice_line_item ID of the invoice line item being credited
|
18 | 17 | * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
19 | 18 | * @property ((object{amount: int, credit_balance_transaction?: string|\Stripe\Billing\CreditBalanceTransaction, discount?: string|\Stripe\Discount, type: string}&\Stripe\StripeObject&\stdClass))[] $pretax_credit_amounts The pretax credit amounts (ex: discount, credit grants, etc) for this line item.
|
20 | 19 | * @property null|int $quantity The number of units of product being credited.
|
21 |
| - * @property ((object{amount: int, inclusive: bool, tax_rate: string|\Stripe\TaxRate, taxability_reason: null|string, taxable_amount: null|int}&\Stripe\StripeObject&\stdClass))[] $tax_amounts The amount of tax calculated per tax rate for this line item |
22 | 20 | * @property \Stripe\TaxRate[] $tax_rates The tax rates which apply to the line item.
|
23 | 21 | * @property string $type The type of the credit note line item, one of <code>invoice_line_item</code> or <code>custom_line_item</code>. When the type is <code>invoice_line_item</code> there is an additional <code>invoice_line_item</code> property on the resource the value of which is the id of the credited line item on the invoice.
|
24 | 22 | * @property null|int $unit_amount The cost of each unit of product being credited.
|
25 | 23 | * @property null|string $unit_amount_decimal Same as <code>unit_amount</code>, but contains a decimal value with at most 12 decimal places.
|
26 |
| - * @property null|string $unit_amount_excluding_tax The amount in cents (or local equivalent) representing the unit amount being credited for this line item, excluding all tax and discounts. |
27 | 24 | */
|
28 | 25 | class CreditNoteLineItem extends ApiResource
|
29 | 26 | {
|
|
0 commit comments