mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 02:28:23 +01:00
25 lines
417 B
PHP
25 lines
417 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Token
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property mixed $bank_account
|
|
* @property mixed $card
|
|
* @property string $client_ip
|
|
* @property int $created
|
|
* @property bool $livemode
|
|
* @property string $type
|
|
* @property bool $used
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Token extends ApiResource
|
|
{
|
|
use ApiOperations\Create;
|
|
use ApiOperations\Retrieve;
|
|
}
|