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
Card.php
61 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace Stripe\Issuing; |
| 6 | |
| 7 | /** |
| 8 | * You can <a href="https://stripe.com/docs/issuing/cards">create physical or |
| 9 | * virtual cards</a> that are issued to cardholders. |
| 10 | * |
| 11 | * @property string $id Unique identifier for the object. |
| 12 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 13 | * @property string $brand The brand of the card. |
| 14 | * @property null|string $cancellation_reason The reason why the card was canceled. |
| 15 | * @property \Stripe\Issuing\Cardholder $cardholder <p>An Issuing <code>Cardholder</code> object represents an individual or business entity who is <a href="https://stripe.com/docs/issuing">issued</a> cards.</p><p>Related guide: <a href="https://stripe.com/docs/issuing/cards#create-cardholder">How to create a Cardholder</a></p> |
| 16 | * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. |
| 17 | * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>. |
| 18 | * @property string $cvc The card's CVC. For security reasons, this is only available for virtual cards, and will be omitted unless you explicitly request it with <a href="https://stripe.com/docs/api/expanding_objects">the <code>expand</code> parameter</a>. Additionally, it's only available via the <a href="https://stripe.com/docs/api/issuing/cards/retrieve">"Retrieve a card" endpoint</a>, not via "List all cards" or any other endpoint. |
| 19 | * @property int $exp_month The expiration month of the card. |
| 20 | * @property int $exp_year The expiration year of the card. |
| 21 | * @property string $last4 The last 4 digits of the card number. |
| 22 | * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode. |
| 23 | * @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format. |
| 24 | * @property string $number The full unredacted card number. For security reasons, this is only available for virtual cards, and will be omitted unless you explicitly request it with <a href="https://stripe.com/docs/api/expanding_objects">the <code>expand</code> parameter</a>. Additionally, it's only available via the <a href="https://stripe.com/docs/api/issuing/cards/retrieve">"Retrieve a card" endpoint</a>, not via "List all cards" or any other endpoint. |
| 25 | * @property null|string|\Stripe\Issuing\Card $replaced_by The latest card that replaces this card, if any. |
| 26 | * @property null|string|\Stripe\Issuing\Card $replacement_for The card this card replaces, if any. |
| 27 | * @property null|string $replacement_reason The reason why the previous card needed to be replaced. |
| 28 | * @property null|\Stripe\StripeObject $shipping Where and how the card will be shipped. |
| 29 | * @property \Stripe\StripeObject $spending_controls |
| 30 | * @property string $status Whether authorizations can be approved on this card. |
| 31 | * @property string $type The type of the card. |
| 32 | * @property null|\Stripe\StripeObject $wallets Information relating to digital wallets (like Apple Pay and Google Pay). |
| 33 | */ |
| 34 | class Card extends \Stripe\ApiResource |
| 35 | { |
| 36 | const OBJECT_NAME = 'issuing.card'; |
| 37 | |
| 38 | use \Stripe\ApiOperations\All; |
| 39 | use \Stripe\ApiOperations\Create; |
| 40 | use \Stripe\ApiOperations\Retrieve; |
| 41 | use \Stripe\ApiOperations\Update; |
| 42 | |
| 43 | /** |
| 44 | * @param null|array $params |
| 45 | * @param null|array|string $opts |
| 46 | * |
| 47 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 48 | * |
| 49 | * @return \Stripe\Issuing\CardDetails the card details associated with that issuing card |
| 50 | */ |
| 51 | public function details($params = null, $opts = null) |
| 52 | { |
| 53 | $url = $this->instanceUrl() . '/details'; |
| 54 | list($response, $opts) = $this->_request('get', $url, $params, $opts); |
| 55 | $obj = \Stripe\Util\Util::convertToStripeObject($response, $opts); |
| 56 | $obj->setLastResponse($response); |
| 57 | |
| 58 | return $obj; |
| 59 | } |
| 60 | } |
| 61 |