SourceTransaction.php 415 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class SourceTransaction
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property int $created
  10. * @property string $customer_data
  11. * @property string $currency
  12. * @property string $type
  13. * @property mixed $ach_credit_transfer
  14. *
  15. * @package Stripe
  16. */
  17. class SourceTransaction extends ApiResource
  18. {
  19. const OBJECT_NAME = "source_transaction";
  20. }