Card
Stay organized with collections
Save and categorize content based on your preferences.
Description of a payment card account (i.e., credit card, debit card, charge card).
JSON representation |
{
"accountNumber": string,
"nameOnCard": string,
"expiryMonth": string,
"expiryYear": string,
"cvn": string,
"issuanceDateMonth": string,
"issuanceDateYear": string
} |
Fields |
accountNumber |
string
REQUIRED: The account number itself (i.e., the FPAN).
|
nameOnCard |
string
REQUIRED: The customer's name as it appears on the card.
|
expiryMonth |
string
OPTIONAL: Expiration month, formatted MM .
|
expiryYear |
string
OPTIONAL: Expiration year, formatted YY .
|
cvn |
string
OPTIONAL: If Google collected the CVN from the user it is provided here and should be verified.
|
issuanceDateMonth |
string
OPTIONAL: Issuance month, formatted MM .
|
issuanceDateYear |
string
OPTIONAL: Issuance year, formatted YY .
|
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-28 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-28 UTC."],[[["\u003cp\u003ePayment card account information includes details like account number, cardholder name, and potentially expiry, CVN, and issuance dates.\u003c/p\u003e\n"],["\u003cp\u003eThe JSON representation provides a structured format for storing and exchanging payment card data.\u003c/p\u003e\n"],["\u003cp\u003eWhile account number and cardholder name are required, other fields like expiry, CVN, and issuance dates are optional.\u003c/p\u003e\n"],["\u003cp\u003eGoogle may include the CVN if collected from the user for verification purposes.\u003c/p\u003e\n"]]],["The content defines a payment card account using a JSON structure. Required fields include the `accountNumber` and `nameOnCard`. Optional fields are `expiryMonth`, `expiryYear`, `cvn`, `issuanceDateMonth`, and `issuanceDateYear`. The `accountNumber` represents the FPAN, and the `nameOnCard` is the customer's name as shown on the card. The format for month and year fields is `MM` and `YY` respectively. The CVN, if collected, should be verified.\n"],null,["# Card\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nDescription of a payment card account (i.e., credit card, debit card, charge card).\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"accountNumber\": string, \"nameOnCard\": string, \"expiryMonth\": string, \"expiryYear\": string, \"cvn\": string, \"issuanceDateMonth\": string, \"issuanceDateYear\": string } ``` |\n\n| Fields ||\n|---------------------|--------------------------------------------------------------------------------------------------------------|\n| `accountNumber` | `string` **REQUIRED**: The account number itself (i.e., the FPAN). |\n| `nameOnCard` | `string` **REQUIRED**: The customer's name as it appears on the card. |\n| `expiryMonth` | `string` **OPTIONAL** : Expiration month, formatted `MM`. |\n| `expiryYear` | `string` **OPTIONAL** : Expiration year, formatted `YY`. |\n| `cvn` | `string` **OPTIONAL**: If Google collected the CVN from the user it is provided here and should be verified. |\n| `issuanceDateMonth` | `string` **OPTIONAL** : Issuance month, formatted `MM`. |\n| `issuanceDateYear` | `string` **OPTIONAL** : Issuance year, formatted `YY`. |"]]