InvoiceLineItem.php 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * @property string $id Unique identifier for the object.
  6. * @property string $object String representing the object's type. Objects of the same type share the same value.
  7. * @property int $amount The amount, in cents (or local equivalent).
  8. * @property null|int $amount_excluding_tax The integer amount in cents (or local equivalent) representing the amount for this line item, excluding all tax and discounts.
  9. * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
  10. * @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
  11. * @property null|\Stripe\StripeObject[] $discount_amounts The amount of discount calculated per discount for this line item.
  12. * @property bool $discountable If true, discounts will apply to this line item. Always false for prorations.
  13. * @property (string|\Stripe\Discount)[] $discounts The discounts applied to the invoice line item. Line item discounts are applied before invoice discounts. Use <code>expand[]=discounts</code> to expand each discount.
  14. * @property null|string $invoice The ID of the invoice that contains this line item.
  15. * @property null|string|\Stripe\InvoiceItem $invoice_item The ID of the <a href="https://stripe.com/docs/api/invoiceitems">invoice item</a> associated with this line item if any.
  16. * @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.
  17. * @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with <code>type=subscription</code>, <code>metadata</code> reflects the current metadata from the subscription associated with the line item, unless the invoice line was directly updated with different metadata after creation.
  18. * @property \Stripe\StripeObject $period
  19. * @property null|\Stripe\Plan $plan The plan of the subscription, if the line item is a subscription or a proration.
  20. * @property null|\Stripe\Price $price The price of the line item.
  21. * @property bool $proration Whether this is a proration.
  22. * @property null|\Stripe\StripeObject $proration_details Additional details for proration line items
  23. * @property null|int $quantity The quantity of the subscription, if the line item is a subscription or a proration.
  24. * @property null|string|\Stripe\Subscription $subscription The subscription that the invoice item pertains to, if any.
  25. * @property null|string|\Stripe\SubscriptionItem $subscription_item The subscription item that generated this line item. Left empty if the line item is not an explicit result of a subscription.
  26. * @property null|\Stripe\StripeObject[] $tax_amounts The amount of tax calculated per tax rate for this line item
  27. * @property null|\Stripe\TaxRate[] $tax_rates The tax rates which apply to the line item.
  28. * @property string $type A string identifying the type of the source of this line item, either an <code>invoiceitem</code> or a <code>subscription</code>.
  29. * @property null|string $unit_amount_excluding_tax The amount in cents (or local equivalent) representing the unit amount for this line item, excluding all tax and discounts.
  30. */
  31. class InvoiceLineItem extends ApiResource
  32. {
  33. const OBJECT_NAME = 'line_item';
  34. use ApiOperations\Update;
  35. /**
  36. * Updates an invoice’s line item. Some fields, such as <code>tax_amounts</code>,
  37. * only live on the invoice line item, so they can only be updated through this
  38. * endpoint. Other fields, such as <code>amount</code>, live on both the invoice
  39. * item and the invoice line item, so updates on this endpoint will propagate to
  40. * the invoice item as well. Updating an invoice’s line item is only possible
  41. * before the invoice is finalized.
  42. *
  43. * @param string $id the ID of the resource to update
  44. * @param null|array $params
  45. * @param null|array|string $opts
  46. *
  47. * @throws \Stripe\Exception\ApiErrorException if the request fails
  48. *
  49. * @return \Stripe\InvoiceLineItem the updated resource
  50. */
  51. public static function update($id, $params = null, $opts = null)
  52. {
  53. self::_validateParams($params);
  54. $url = static::resourceUrl($id);
  55. list($response, $opts) = static::_staticRequest('post', $url, $params, $opts);
  56. $obj = \Stripe\Util\Util::convertToStripeObject($response->json, $opts);
  57. $obj->setLastResponse($response);
  58. return $obj;
  59. }
  60. }