OrderReturn.php 471 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class OrderReturn
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property int $created
  10. * @property string $currency
  11. * @property OrderItem[] $items
  12. * @property bool $livemode
  13. * @property string $order
  14. * @property string $refund
  15. *
  16. * @package Stripe
  17. */
  18. class OrderReturn extends ApiResource
  19. {
  20. const OBJECT_NAME = "order_return";
  21. use ApiOperations\All;
  22. use ApiOperations\Retrieve;
  23. }