Authorization.php
6 years ago
Card.php
6 years ago
CardDetails.php
6 years ago
Cardholder.php
6 years ago
Dispute.php
6 years ago
Transaction.php
6 years ago
Cardholder.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe\Issuing; |
| 4 | |
| 5 | /** |
| 6 | * Class Cardholder |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property mixed $billing |
| 11 | * @property int $created |
| 12 | * @property string $email |
| 13 | * @property bool $livemode |
| 14 | * @property \Stripe\StripeObject $metadata |
| 15 | * @property string $name |
| 16 | * @property string $phone_number |
| 17 | * @property string $status |
| 18 | * @property string $type |
| 19 | * |
| 20 | * @package Stripe\Issuing |
| 21 | */ |
| 22 | class Cardholder extends \Stripe\ApiResource |
| 23 | { |
| 24 | const OBJECT_NAME = "issuing.cardholder"; |
| 25 | |
| 26 | use \Stripe\ApiOperations\All; |
| 27 | use \Stripe\ApiOperations\Create; |
| 28 | use \Stripe\ApiOperations\Retrieve; |
| 29 | use \Stripe\ApiOperations\Update; |
| 30 | } |
| 31 |