Sha256: d55129cc4b86af1611daddf9ab39a3c6af5c4ac3990b149d3093b816b6246951

Contents?: true

Size: 442 Bytes

Versions: 3

Compression:

Stored size: 442 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"
    AMERICAN_EXPRESS = "amex"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buckaruby-1.4.0 lib/buckaruby/payment_method.rb
buckaruby-1.3.1 lib/buckaruby/payment_method.rb
buckaruby-1.3.0 lib/buckaruby/payment_method.rb