mirror of
https://github.com/itflow-org/itflow
synced 2026-03-27 15:55:37 +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/Token.php
vendored
Normal file
35
vendor/stripe-php-7.0.2/lib/Token.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Class Token
|
||||
*
|
||||
* @property string $id
|
||||
* @property string $object
|
||||
* @property BankAccount $bank_account
|
||||
* @property Card $card
|
||||
* @property string $client_ip
|
||||
* @property int $created
|
||||
* @property bool $livemode
|
||||
* @property string $type
|
||||
* @property bool $used
|
||||
*
|
||||
* @package Stripe
|
||||
*/
|
||||
class Token extends ApiResource
|
||||
{
|
||||
const OBJECT_NAME = "token";
|
||||
|
||||
use ApiOperations\Create;
|
||||
use ApiOperations\Retrieve;
|
||||
|
||||
/**
|
||||
* Possible string representations of the token type.
|
||||
* @link https://stripe.com/docs/api/tokens/object#token_object-type
|
||||
*/
|
||||
const TYPE_ACCOUNT = 'account';
|
||||
const TYPE_BANK_ACCOUNT = 'bank_account';
|
||||
const TYPE_CARD = 'card';
|
||||
const TYPE_PII = 'pii';
|
||||
}
|
||||
Reference in New Issue
Block a user