| Name |
Type |
Description |
Notes |
| cvc |
str |
It is a value that allows identifying the security code of the card. |
|
| device_fingerprint |
str |
It is a value that allows identifying the device fingerprint. |
[optional] |
| exp_month |
str |
It is a value that allows identifying the expiration month of the card. |
|
| exp_year |
str |
It is a value that allows identifying the expiration year of the card. |
|
| name |
str |
It is a value that allows identifying the name of the cardholder. |
|
| number |
str |
It is a value that allows identifying the number of the card. |
|
from conekta.models.token_request_card import TokenRequestCard
# TODO update the JSON string below
json = "{}"
# create an instance of TokenRequestCard from a JSON string
token_request_card_instance = TokenRequestCard.from_json(json)
# print the JSON string representation of the object
print(TokenRequestCard.to_json())
# convert the object into a dict
token_request_card_dict = token_request_card_instance.to_dict()
# create an instance of TokenRequestCard from a dict
token_request_card_from_dict = TokenRequestCard.from_dict(token_request_card_dict)
[Back to Model list] [Back to API list] [Back to README]