composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / Plan.php
blob54a2b58eb35fafcbb9180fb7ec41a3acde65ecb6
1 <?php
3 namespace Stripe;
5 /**
6 * Class Plan
8 * @package Stripe
10 * @property string $id
11 * @property string $object
12 * @property bool $active
13 * @property string $aggregate_usage
14 * @property int $amount
15 * @property string $billing_scheme
16 * @property int $created
17 * @property string $currency
18 * @property string $interval
19 * @property int $interval_count
20 * @property bool $livemode
21 * @property StripeObject $metadata
22 * @property string $nickname
23 * @property string $product
24 * @property mixed $tiers
25 * @property string $tiers_mode
26 * @property mixed $transform_usage
27 * @property int $trial_period_days
28 * @property string $usage_type
30 class Plan extends ApiResource
33 const OBJECT_NAME = "plan";
35 use ApiOperations\All;
36 use ApiOperations\Create;
37 use ApiOperations\Delete;
38 use ApiOperations\Retrieve;
39 use ApiOperations\Update;