Plan.php 871 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class Plan
  5. *
  6. * @package Stripe
  7. *
  8. * @property string $id
  9. * @property string $object
  10. * @property bool $active
  11. * @property string $aggregate_usage
  12. * @property int $amount
  13. * @property string $billing_scheme
  14. * @property int $created
  15. * @property string $currency
  16. * @property string $interval
  17. * @property int $interval_count
  18. * @property bool $livemode
  19. * @property StripeObject $metadata
  20. * @property string $nickname
  21. * @property string $product
  22. * @property mixed $tiers
  23. * @property string $tiers_mode
  24. * @property mixed $transform_usage
  25. * @property int $trial_period_days
  26. * @property string $usage_type
  27. */
  28. class Plan extends ApiResource
  29. {
  30. const OBJECT_NAME = "plan";
  31. use ApiOperations\All;
  32. use ApiOperations\Create;
  33. use ApiOperations\Delete;
  34. use ApiOperations\Retrieve;
  35. use ApiOperations\Update;
  36. }