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