Sha256: 5d30767092a8f3090b4243e662ac1ce0b787754a37414d4d8d5d3f6157a368ce
Contents?: true
Size: 524 Bytes
Versions: 3
Compression:
Stored size: 524 Bytes
Contents
require_relative '../../util/enum' module MangoModel # Card types enumeration class CardType extend Enum # Visa MasterCard CB_VISA_MASTERCARD = value 'CB_VISA_MASTERCARD' # Diners card DINERS = value 'DINERS' # MasterPass card MASTERPASS = value 'MASTERPAS' # Maestro card MAESTRO = value 'MAESTRO' # P24 card P24 = value 'P24' # Ideal card IDEAL = value 'IDEAL' # BCMC card BCMC = value 'BCMC' # PayLib card PAYLIB = value 'PAYLIB' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mangopay-v4-4.1.0 | lib/mangopay/model/enum/card_type.rb |
mangopay-v4-4.0.2 | lib/mangopay/model/enum/card_type.rb |
mangopay-v4-4.0.1 | lib/mangopay/model/enum/card_type.rb |