SourceTransaction.php 408 B

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