21 lines
319 B
PHP
Executable File
21 lines
319 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Discount
|
|
*
|
|
* @property string $object
|
|
* @property Coupon $coupon
|
|
* @property string $customer
|
|
* @property int $end
|
|
* @property int $start
|
|
* @property string $subscription
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Discount extends StripeObject
|
|
{
|
|
const OBJECT_NAME = 'discount';
|
|
}
|