Refund.php 679 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class Refund
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property string $balance_transaction
  10. * @property string $charge
  11. * @property int $created
  12. * @property string $currency
  13. * @property string $failure_balance_transaction
  14. * @property string failure_reason
  15. * @property StripeObject $metadata
  16. * @property mixed $reason
  17. * @property mixed $receipt_number
  18. * @property string $status
  19. *
  20. * @package Stripe
  21. */
  22. class Refund extends ApiResource
  23. {
  24. const OBJECT_NAME = "refund";
  25. use ApiOperations\All;
  26. use ApiOperations\Create;
  27. use ApiOperations\Retrieve;
  28. use ApiOperations\Update;
  29. }