forked from Wavyzz/dolibarr
33 lines
679 B
PHP
33 lines
679 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Coupon
|
|
*
|
|
* @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
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Coupon extends ApiResource
|
|
{
|
|
use ApiOperations\All;
|
|
use ApiOperations\Create;
|
|
use ApiOperations\Delete;
|
|
use ApiOperations\Retrieve;
|
|
use ApiOperations\Update;
|
|
}
|