|
3 | 3 |
|
4 | 4 | ### Description |
5 | 5 |
|
6 | | -Represents the non-confidential details of a credit card. |
| 6 | +Represents the payment details of a card to be used for payments. These details are determined by the `card_nonce` generated by `SqPaymentForm`. |
7 | 7 |
|
8 | 8 | ## Properties |
9 | 9 | Name | Type | Description | Notes |
10 | 10 | ------------ | ------------- | ------------- | ------------- |
11 | | -**id** | **str** | The card's unique ID, if any. | [optional] |
| 11 | +**id** | **str** | Unique ID for this card. Generated by Square. | [optional] |
12 | 12 | **card_brand** | **str** | The card's brand (such as `VISA`). See [CardBrand](#type-cardbrand) for all possible values. | [optional] |
13 | | -**last_4** | **str** | The last 4 digits of the card's number. | [optional] |
14 | | -**exp_month** | **int** | The month of the card's expiration date. This value is always between `1` and `12`, inclusive. | [optional] |
| 13 | +**last_4** | **str** | The last 4 digits of the card number. | [optional] |
| 14 | +**exp_month** | **int** | The expiration month of the associated card as an integer between 1 and 12. | [optional] |
15 | 15 | **exp_year** | **int** | The four-digit year of the card's expiration date. | [optional] |
16 | | -**cardholder_name** | **str** | The cardholder name. This value is present only if this object represents a customer's card on file. | [optional] |
17 | | -**billing_address** | [**Address**](Address.md) | The card's billing address. This value is present only if this object represents a customer's card on file. | [optional] |
18 | | -**fingerprint** | **str** | The unique string fingerprint for the card. The fingerprint is based on the credit card number and is unique to the merchant. If a card is used at multiple locations for the same merchant, it will have the same fingerprint in each case. Note: Fingerprint may not exist on old transactions. | [optional] |
| 16 | +**cardholder_name** | **str** | The name of the cardholder. | [optional] |
| 17 | +**billing_address** | [**Address**](Address.md) | The billing address for this card. | [optional] |
| 18 | +**fingerprint** | **str** | __Not currently set.__ Intended as a Square-assigned identifier, based on the card number, to identify the card across multiple locations within a single application. | [optional] |
19 | 19 |
|
20 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
21 | 21 |
|
|
0 commit comments