dolibarr/htdocs/includes/stripe/lib/Coupon.php

33 lines
679 B
PHP
Raw Normal View History

2017-04-18 05:44:08 +02:00
<?php
namespace Stripe;
/**
* Class Coupon
*
2018-03-06 13:52:56 +01:00
* @property string $id
* @property string $object
* @property int $amount_off
* @property int $created
* @property string $currency
* @property string $duration
* @property int $duration_in_months
* @property bool $livemode
* @property int $max_redemptions
* @property StripeObject $metadata
* @property int $percent_off
* @property int $redeem_by
* @property int $times_redeemed
* @property bool $valid
*
2017-04-18 05:44:08 +02:00
* @package Stripe
*/
class Coupon extends ApiResource
{
2018-03-06 13:52:56 +01:00
use ApiOperations\All;
use ApiOperations\Create;
use ApiOperations\Delete;
use ApiOperations\Retrieve;
use ApiOperations\Update;
2017-04-18 05:44:08 +02:00
}