Enum ScraperProductType

Namespace
Subsembly.Scraper
Assembly
Subsembly.Scraper.dll

Type of account product as perceived by the account holder.

[Flags]
public enum ScraperProductType

Fields

BankAccount = 1

Any kind of bank account. This could be a current account, a savings account, a cash deposit account, or another type of bank account.

CreditCard = 2

A credit card account. Note that the actual account does not necessarily use a credit card number as the account identification.

Null = 0

Undefined or uninitialized product type.

TestBankAccount = 257

A test system bank account.

TestCreditCard = 258

A test system credit card.

Remarks

Do not assume the type of account identification based on the product type. For the purpose of screen scraping it may be necessary to identify a credit card by its bank assigned IBAN, instead of its credit card number.

See Also