Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.83 KB

Card.md

File metadata and controls

33 lines (25 loc) · 1.83 KB

Square.Connect.Model.Card

Properties

Name Type Description Notes
Id string The card's unique ID, if any. [optional]
CardBrand CardBrandEnum The card's brand (such as `VISA`). See CardBrand for all possible values. [optional]
Last4 string The last 4 digits of the card's number. [optional]
ExpMonth long? The month of the card's expiration date. This value is always between `1` and `12`, inclusive. [optional]
ExpYear long? The four-digit year of the card's expiration date. [optional]
CardholderName string The cardholder name. This value is present only if this object represents a customer's card on file. [optional]
BillingAddress Address The card's billing address. This value is present only if this object represents a customer's card on file. [optional]
Fingerprint string 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]

CardBrandEnum

Name Value
OTHERBRAND "OTHER_BRAND"
VISA "VISA"
MASTERCARD "MASTERCARD"
AMERICANEXPRESS "AMERICAN_EXPRESS"
DISCOVER "DISCOVER"
DISCOVERDINERS "DISCOVER_DINERS"
JCB "JCB"
CHINAUNIONPAY "CHINA_UNIONPAY"
SQUAREGIFTCARD "SQUARE_GIFT_CARD"

[Back to Model list] [Back to API list] [Back to README]