| Name |
Type |
Description |
Notes |
| masked_pan |
str |
The last four digits of the card number. |
[optional] |
| bank_card_type |
str |
Enumerates the type of a bank card. |
[optional] |
| valid_thru_year |
str |
The 4-digit year part of the card validity date. |
[optional] |
| valid_thru_month |
str |
The 2-digit month part of the card validity date. |
[optional] |
from clientapi_barion.models.bank_card import BankCard
# TODO update the JSON string below
json = "{}"
# create an instance of BankCard from a JSON string
bank_card_instance = BankCard.from_json(json)
# print the JSON string representation of the object
print(BankCard.to_json())
# convert the object into a dict
bank_card_dict = bank_card_instance.to_dict()
# create an instance of BankCard from a dict
bank_card_from_dict = BankCard.from_dict(bank_card_dict)
[Back to Model list] [Back to API list] [Back to README]