summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Issuing/CardDetails.php
blob: 2097a55f024aecbbc148426d4a078c3b4905cd4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace Stripe\Issuing;

/**
 * Class CardDetails.
 *
 * @property string $id
 * @property string $object
 * @property Card $card
 * @property string $cvc
 * @property int $exp_month
 * @property int $exp_year
 * @property string $number
 */
class CardDetails extends \Stripe\ApiResource
{
    const OBJECT_NAME = 'issuing.card_details';
}