composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / Token.php
blob91abf7abc40ebfda9c53e6e81a4972b228d5f3fe
1 <?php
3 namespace Stripe;
5 /**
6 * Class Token
8 * @property string $id
9 * @property string $object
10 * @property BankAccount $bank_account
11 * @property Card $card
12 * @property string $client_ip
13 * @property int $created
14 * @property bool $livemode
15 * @property string $type
16 * @property bool $used
18 * @package Stripe
20 class Token extends ApiResource
23 const OBJECT_NAME = "token";
25 use ApiOperations\Create;
26 use ApiOperations\Retrieve;