Authorization.php
2 years ago
Card.php
2 years ago
CardDetails.php
4 years ago
Cardholder.php
4 years ago
Dispute.php
2 years ago
Transaction.php
4 years ago
CardDetails.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe\Issuing; |
| 4 | |
| 5 | /** |
| 6 | * Class CardDetails. |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property Card $card |
| 11 | * @property string $cvc |
| 12 | * @property int $exp_month |
| 13 | * @property int $exp_year |
| 14 | * @property string $number |
| 15 | */ |
| 16 | class CardDetails extends \Stripe\ApiResource |
| 17 | { |
| 18 | const OBJECT_NAME = 'issuing.card_details'; |
| 19 | } |
| 20 |