BalanceTransaction.php 891 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class BalanceTransaction
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property int $available_on
  10. * @property int $created
  11. * @property string $currency
  12. * @property string $description
  13. * @property float $exchange_rate
  14. * @property int $fee
  15. * @property mixed $fee_details
  16. * @property int $net
  17. * @property string $source
  18. * @property string $status
  19. * @property string $type
  20. *
  21. * @package Stripe
  22. */
  23. class BalanceTransaction extends ApiResource
  24. {
  25. const OBJECT_NAME = "balance_transaction";
  26. use ApiOperations\All;
  27. use ApiOperations\Retrieve;
  28. /**
  29. * @return string The class URL for this resource. It needs to be special
  30. * cased because it doesn't fit into the standard resource pattern.
  31. */
  32. public static function classUrl()
  33. {
  34. return "/v1/balance/history";
  35. }
  36. }