diff --git a/lib/Invoice.php b/lib/Invoice.php index 706da0a63..364aa29db 100644 --- a/lib/Invoice.php +++ b/lib/Invoice.php @@ -32,11 +32,11 @@ * amount due for the invoice is less than Stripe's minimum allowed * charge per currency, the invoice is automatically marked paid, and we add - * the amount due to the customer's running account balance which is applied to the - * next invoice. + * the amount due to the customer's credit balance which is applied to the next + * invoice. * - * More details on the customer's account balance are here. + * More details on the customer's credit balance are here. * * Related guide: Send * Invoices to Customers. diff --git a/lib/LineItem.php b/lib/LineItem.php index d3e55af20..dfd1b962f 100644 --- a/lib/LineItem.php +++ b/lib/LineItem.php @@ -9,12 +9,12 @@ * * @property string $id Unique identifier for the object. * @property string $object String representing the object's type. Objects of the same type share the same value. - * @property null|int $amount_subtotal Total before any discounts or taxes is applied. + * @property null|int $amount_subtotal Total before any discounts or taxes are applied. * @property null|int $amount_total Total after discounts and taxes. * @property string $currency Three-letter ISO currency code, in lowercase. Must be a supported currency. * @property string $description An arbitrary string attached to the object. Often useful for displaying to users. Defaults to product name. * @property \Stripe\StripeObject[] $discounts The discounts applied to the line item. - * @property \Stripe\Price $price
Prices define the unit cost, currency, and (optional) billing cycle for both recurring and one-time purchases of products. Products help you track inventory or provisioning, and prices help you track payment terms. Different physical goods or levels of service should be represented by products, and pricing options should be represented by prices. This approach lets you change prices without having to change your provisioning scheme.
For example, you might have a single "gold" product that has prices for $10/month, $100/year, and €9 once.
Related guides: Set up a subscription, create an invoice, and more about products and prices.
+ * @property null|\Stripe\Price $price The price used to generate the line item. * @property null|int $quantity The quantity of products being purchased. * @property \Stripe\StripeObject[] $taxes The taxes applied to the line item. */