Sha256: d951ea6b5ebaa88884bde0085c0a1f639b4c3dfab5e89a3e2c8e5422c3634ba8
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: class NetworkTokenizationCreditCard < CreditCard # A +NetworkTokenizationCreditCard+ object represents a tokenized credit card # using the EMV Network Tokenization specification, http://www.emvco.com/specifications.aspx?id=263. # # It includes all fields of the +CreditCard+ class with additional fields for # verification data that must be given to gateways through existing fields (3DS / EMV). # # The only tested usage of this at the moment is with an Apple Pay decrypted PKPaymentToken, # https://developer.apple.com/library/ios/documentation/PassKit/Reference/PaymentTokenJSON/PaymentTokenJSON.html # These are not relevant (verification) or optional (name) for Apple Pay self.require_verification_value = false self.require_name = false attr_accessor :payment_cryptogram, :eci, :transaction_id, :metadata, :payment_data attr_writer :source SOURCES = %i(apple_pay android_pay google_pay network_token) def source if defined?(@source) && SOURCES.include?(@source) @source else :apple_pay end end def credit_card? true end def type 'network_tokenization' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activemerchant-1.137.0 | lib/active_merchant/billing/network_tokenization_credit_card.rb |