Sha256: 299b82c87a494197652130d415d13fa8cbea50a389877e09abf361f94a70d174

Contents?: true

Size: 500 Bytes

Versions: 1

Compression:

Stored size: 500 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"
    SOFORT = "sofortueberweisung"
    GIROPAY = "giropay"
    TRANSFER = "transfer"

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
buckaruby-1.7.0 lib/buckaruby/payment_method.rb