class ActiveMerchant::Billing::NetworkTokenizationCreditCard

Constants

SOURCES

Attributes

eci[RW]
payment_cryptogram[RW]
source[W]
transaction_id[RW]

Public Instance Methods

credit_card?() click to toggle source
# File lib/active_merchant/billing/network_tokenization_credit_card.rb, line 30
def credit_card?
  true
end
source() click to toggle source
# File lib/active_merchant/billing/network_tokenization_credit_card.rb, line 22
def source
  if defined?(@source) && SOURCES.include?(@source)
    @source
  else
    :apple_pay
  end
end
type() click to toggle source
# File lib/active_merchant/billing/network_tokenization_credit_card.rb, line 34
def type
  'network_tokenization'
end