File: credit_card_numbers.py

package info (click to toggle)
python-braintree 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,376 kB
  • ctags: 1,998
  • sloc: python: 13,634; makefile: 73; sh: 8
file content (27 lines) | stat: -rw-r--r-- 929 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class CreditCardNumbers(object):
    class CardTypeIndicators(object):
        Commercial = "4111111111131010"
        DurbinRegulated = "4111161010101010"
        Debit = "4117101010101010"
        Healthcare = "4111111510101010"
        Payroll  = "4111111114101010"
        Prepaid = "4111111111111210"
        IssuingBank = "4111111141010101"
        CountryOfIssuance = "4111111111121102"

        No  = "4111111111310101"
        Unknown = "4111111111112101"

    Maestro = "6304000000000000" # :nodoc:
    MasterCard = "5555555555554444"
    MasterCardInternational = "5105105105105100" # :nodoc:

    Visa = "4012888888881881"
    VisaInternational = "4009348888881881" # :nodoc:
    VisaPrepaid = "4500600000000061"

    class FailsSandboxVerification(object):
        AmEx       = "378734493671000"
        Discover   = "6011000990139424"
        MasterCard = "5105105105105100"
        Visa       = "4000111111111115"