InvoiceItem.php 840 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class InvoiceItem
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property string $currency
  10. * @property string $customer
  11. * @property int $date
  12. * @property string $description
  13. * @property bool $discountable
  14. * @property string $invoice
  15. * @property bool $livemode
  16. * @property StripeObject $metadata
  17. * @property mixed $period
  18. * @property Plan $plan
  19. * @property bool $proration
  20. * @property int $quantity
  21. * @property string $subscription
  22. * @property string $subscription_item
  23. * @property int $unit_amount
  24. *
  25. * @package Stripe
  26. */
  27. class InvoiceItem extends ApiResource
  28. {
  29. const OBJECT_NAME = "invoiceitem";
  30. use ApiOperations\All;
  31. use ApiOperations\Create;
  32. use ApiOperations\Delete;
  33. use ApiOperations\Retrieve;
  34. use ApiOperations\Update;
  35. }