5#ifndef MOLYBDEN_CREDIT_CARD_HPP
6#define MOLYBDEN_CREDIT_CARD_HPP
15enum class CreditCardNetwork {
The credit card information persisted in the credit card store.
Definition credit_card.hpp:38
uint32_t expiration_month
The expiration month of the credit card.
Definition credit_card.hpp:58
uint32_t expiration_year
The expiration year of the credit card.
Definition credit_card.hpp:63
std::string number
The card number.
Definition credit_card.hpp:47
CreditCardNetwork network
The network issuer of the card.
Definition credit_card.hpp:68
std::string guid
An internal field used for identifying a credit card by Chromium.
Definition credit_card.hpp:53
std::string holder
The name of the cardholder entered by the user.
Definition credit_card.hpp:42