• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stripe / stripe-php / 9308533534

30 May 2024 08:07PM UTC coverage: 65.24% (-0.9%) from 66.176%
9308533534

push

github

web-flow
Added PHPDocs for `create`, `update`, `delete`, `all`, `retrieve` methods after moving them out of traits.  (#1701)

* Demagiced crudl operation

* Improvements from codegen#1452

* Updated override to fix indents

1080 of 1682 new or added lines in 106 files covered. (64.21%)

15 existing lines in 3 files now uncovered.

3444 of 5279 relevant lines covered (65.24%)

2.29 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/lib/InvoiceLineItem.php
1
<?php
2

3
// File generated from our OpenAPI spec
4

5
namespace Stripe;
6

7
/**
8
 * @property string $id Unique identifier for the object.
9
 * @property string $object String representing the object's type. Objects of the same type share the same value.
10
 * @property int $amount The amount, in cents (or local equivalent).
11
 * @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.
12
 * @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>.
13
 * @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
14
 * @property null|\Stripe\StripeObject[] $discount_amounts The amount of discount calculated per discount for this line item.
15
 * @property bool $discountable If true, discounts will apply to this line item. Always false for prorations.
16
 * @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.
17
 * @property null|string $invoice The ID of the invoice that contains this line item.
18
 * @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.
19
 * @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.
20
 * @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.
21
 * @property \Stripe\StripeObject $period
22
 * @property null|\Stripe\Plan $plan The plan of the subscription, if the line item is a subscription or a proration.
23
 * @property null|\Stripe\Price $price The price of the line item.
24
 * @property bool $proration Whether this is a proration.
25
 * @property null|\Stripe\StripeObject $proration_details Additional details for proration line items
26
 * @property null|int $quantity The quantity of the subscription, if the line item is a subscription or a proration.
27
 * @property null|string|\Stripe\Subscription $subscription The subscription that the invoice item pertains to, if any.
28
 * @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.
29
 * @property null|\Stripe\StripeObject[] $tax_amounts The amount of tax calculated per tax rate for this line item
30
 * @property null|\Stripe\TaxRate[] $tax_rates The tax rates which apply to the line item.
31
 * @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>.
32
 * @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.
33
 */
34
class InvoiceLineItem extends ApiResource
35
{
36
    const OBJECT_NAME = 'line_item';
37

38
    use ApiOperations\Update;
39

40
    /**
41
     * Updates an invoice’s line item. Some fields, such as <code>tax_amounts</code>,
42
     * only live on the invoice line item, so they can only be updated through this
43
     * endpoint. Other fields, such as <code>amount</code>, live on both the invoice
44
     * item and the invoice line item, so updates on this endpoint will propagate to
45
     * the invoice item as well. Updating an invoice’s line item is only possible
46
     * before the invoice is finalized.
47
     *
48
     * @param string $id the ID of the resource to update
49
     * @param null|array $params
50
     * @param null|array|string $opts
51
     *
52
     * @throws \Stripe\Exception\ApiErrorException if the request fails
53
     *
54
     * @return \Stripe\InvoiceLineItem the updated resource
55
     */
NEW
56
    public static function update($id, $params = null, $opts = null)
×
57
    {
NEW
58
        self::_validateParams($params);
×
NEW
59
        $url = static::resourceUrl($id);
×
60

NEW
61
        list($response, $opts) = static::_staticRequest('post', $url, $params, $opts);
×
NEW
62
        $obj = \Stripe\Util\Util::convertToStripeObject($response->json, $opts);
×
NEW
63
        $obj->setLastResponse($response);
×
64

NEW
65
        return $obj;
×
66
    }
67
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc