composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / Coupon.php
blob23564c0ae5cbf61d000688494b09c5dac063a8b2
1 <?php
3 namespace Stripe;
5 /**
6 * Class Coupon
8 * @property string $id
9 * @property string $object
10 * @property int $amount_off
11 * @property int $created
12 * @property string $currency
13 * @property string $duration
14 * @property int $duration_in_months
15 * @property bool $livemode
16 * @property int $max_redemptions
17 * @property StripeObject $metadata
18 * @property int $percent_off
19 * @property int $redeem_by
20 * @property int $times_redeemed
21 * @property bool $valid
23 * @package Stripe
25 class Coupon extends ApiResource
28 const OBJECT_NAME = "coupon";
30 use ApiOperations\All;
31 use ApiOperations\Create;
32 use ApiOperations\Delete;
33 use ApiOperations\Retrieve;
34 use ApiOperations\Update;