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
CardDetails.php
22 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 | * @package Stripe\Issuing |
| 17 | */ |
| 18 | class CardDetails extends \Stripe\ApiResource |
| 19 | { |
| 20 | const OBJECT_NAME = "issuing.card_details"; |
| 21 | } |
| 22 |