composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / InvoiceItem.php
blob1401564bcc01e644f57d249814a26ffbbafb23f7
1 <?php
3 namespace Stripe;
5 /**
6 * Class InvoiceItem
8 * @property string $id
9 * @property string $object
10 * @property int $amount
11 * @property string $currency
12 * @property string $customer
13 * @property int $date
14 * @property string $description
15 * @property bool $discountable
16 * @property string $invoice
17 * @property bool $livemode
18 * @property StripeObject $metadata
19 * @property mixed $period
20 * @property Plan $plan
21 * @property bool $proration
22 * @property int $quantity
23 * @property string $subscription
24 * @property string $subscription_item
25 * @property int $unit_amount
27 * @package Stripe
29 class InvoiceItem extends ApiResource
32 const OBJECT_NAME = "invoiceitem";
34 use ApiOperations\All;
35 use ApiOperations\Create;
36 use ApiOperations\Delete;
37 use ApiOperations\Retrieve;
38 use ApiOperations\Update;