34 lines
782 B
PHP
Executable File
34 lines
782 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe\Issuing;
|
|
|
|
/**
|
|
* Class Cardholder
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property mixed|null $authorization_controls
|
|
* @property mixed $billing
|
|
* @property int $created
|
|
* @property string|null $email
|
|
* @property bool $is_default
|
|
* @property bool $livemode
|
|
* @property \Stripe\StripeObject $metadata
|
|
* @property string $name
|
|
* @property string|null $phone_number
|
|
* @property mixed $requirements
|
|
* @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;
|
|
}
|