mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
31 lines
661 B
PHP
31 lines
661 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Stripe\Issuing;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Cardholder
|
||
|
|
*
|
||
|
|
* @property string $id
|
||
|
|
* @property string $object
|
||
|
|
* @property mixed $billing
|
||
|
|
* @property int $created
|
||
|
|
* @property string $email
|
||
|
|
* @property bool $livemode
|
||
|
|
* @property \Stripe\StripeObject $metadata
|
||
|
|
* @property string $name
|
||
|
|
* @property string $phone_number
|
||
|
|
* @property string $status
|
||
|
|
* @property string $type
|
||
|
|
*
|
||
|
|
* @package Stripe\Issuing
|
||
|
|
*/
|
||
|
|
class Cardholder extends \Stripe\ApiResource
|
||
|
|
{
|
||
|
|
const OBJECT_NAME = "issuing.cardholder";
|
||
|
|
|
||
|
|
use \Stripe\ApiOperations\All;
|
||
|
|
use \Stripe\ApiOperations\Create;
|
||
|
|
use \Stripe\ApiOperations\Retrieve;
|
||
|
|
use \Stripe\ApiOperations\Update;
|
||
|
|
}
|