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