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

31 lines
612 B
PHP
Raw Normal View History

2017-04-18 05:44:08 +02:00
<?php
namespace Stripe;
/**
* Class Plan
*
* @package Stripe
*
2018-03-06 13:52:56 +01:00
* @property string $id
* @property string $object
* @property int $amount
* @property int $created
* @property string $currency
* @property string $interval
* @property int $interval_count
* @property bool $livemode
* @property StripeObject $metadata
* @property string $nickname
* @property string $product
* @property int $trial_period_days
2017-04-18 05:44:08 +02:00
*/
class Plan 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
}