dolibarr/htdocs/includes/stripe/lib/Token.php

25 lines
417 B
PHP
Raw Normal View History

2017-04-18 05:44:08 +02:00
<?php
namespace Stripe;
/**
* Class Token
*
* @property string $id
* @property string $object
* @property mixed $bank_account
* @property mixed $card
2018-03-06 13:52:56 +01:00
* @property string $client_ip
2017-04-18 05:44:08 +02:00
* @property int $created
* @property bool $livemode
* @property string $type
* @property bool $used
*
* @package Stripe
*/
class Token extends ApiResource
{
2018-03-06 13:52:56 +01:00
use ApiOperations\Create;
use ApiOperations\Retrieve;
2017-04-18 05:44:08 +02:00
}