Transaction.php 773 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace Stripe\Issuing;
  3. /**
  4. * Class Transaction
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property string $authorization
  10. * @property string $balance_transaction
  11. * @property string $card
  12. * @property string $cardholder
  13. * @property int $created
  14. * @property string $currency
  15. * @property string $dispute
  16. * @property bool $livemode
  17. * @property mixed $merchant_data
  18. * @property \Stripe\StripeObject $metadata
  19. * @property string $type
  20. *
  21. * @package Stripe\Issuing
  22. */
  23. class Transaction extends \Stripe\ApiResource
  24. {
  25. const OBJECT_NAME = "issuing.transaction";
  26. use \Stripe\ApiOperations\All;
  27. use \Stripe\ApiOperations\Create;
  28. use \Stripe\ApiOperations\Retrieve;
  29. use \Stripe\ApiOperations\Update;
  30. }