InvoiceLineItem.php 643 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class InvoiceLineItem
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property string $currency
  10. * @property string $description
  11. * @property bool $discountable
  12. * @property string $invoice_item
  13. * @property bool $livemode
  14. * @property StripeObject $metadata
  15. * @property mixed $period
  16. * @property Plan $plan
  17. * @property bool $proration
  18. * @property int $quantity
  19. * @property string $subscription
  20. * @property string $subscription_item
  21. * @property string $type
  22. *
  23. * @package Stripe
  24. */
  25. class InvoiceLineItem extends ApiResource
  26. {
  27. const OBJECT_NAME = "line_item";
  28. }