mirror of
https://github.com/itflow-org/itflow
synced 2026-03-25 14:55:38 +00:00
Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates
This commit is contained in:
35
vendor/stripe-php-7.0.2/lib/Issuing/Transaction.php
vendored
Normal file
35
vendor/stripe-php-7.0.2/lib/Issuing/Transaction.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe\Issuing;
|
||||
|
||||
/**
|
||||
* Class Transaction
|
||||
*
|
||||
* @property string $id
|
||||
* @property string $object
|
||||
* @property int $amount
|
||||
* @property string $authorization
|
||||
* @property string $balance_transaction
|
||||
* @property string $card
|
||||
* @property string $cardholder
|
||||
* @property int $created
|
||||
* @property string $currency
|
||||
* @property string $dispute
|
||||
* @property bool $livemode
|
||||
* @property mixed $merchant_data
|
||||
* @property int $merchant_amount
|
||||
* @property string $merchant_currency
|
||||
* @property \Stripe\StripeObject $metadata
|
||||
* @property string $type
|
||||
*
|
||||
* @package Stripe\Issuing
|
||||
*/
|
||||
class Transaction extends \Stripe\ApiResource
|
||||
{
|
||||
const OBJECT_NAME = "issuing.transaction";
|
||||
|
||||
use \Stripe\ApiOperations\All;
|
||||
use \Stripe\ApiOperations\Create;
|
||||
use \Stripe\ApiOperations\Retrieve;
|
||||
use \Stripe\ApiOperations\Update;
|
||||
}
|
||||
Reference in New Issue
Block a user