Sha256: 3669226e2a65dcd65780b8abeeb49ffd5b448680fe3dcaa92f290b000279d15f

Contents?: true

Size: 412 Bytes

Versions: 3

Compression:

Stored size: 412 Bytes

Contents

# frozen_string_literal: true

module Buckaruby
  module PaymentMethod
    IDEAL = "ideal" # iDEAL collecting
    IDEAL_PROCESSING = "idealprocessing" # iDEAL processing

    SEPA_DIRECT_DEBIT = "sepadirectdebit"
    PAYPAL = "paypal"
    BANCONTACT_MISTER_CASH = "bancontactmrcash"
    TRANSFER = "transfer"

    # Credit cards
    VISA = "visa"
    MASTER_CARD = "mastercard"
    MAESTRO = "maestro"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buckaruby-1.2.0 lib/buckaruby/payment_method.rb
buckaruby-1.1.1 lib/buckaruby/payment_method.rb
buckaruby-1.1.0 lib/buckaruby/payment_method.rb