lib/active_merchant/billing/payment_token.rb in activemerchant-1.45.0 vs lib/active_merchant/billing/payment_token.rb in activemerchant-1.46.0
- old
+ new
@@ -4,10 +4,10 @@
# like Apple Pay. Payment data may be transmitted via any data type, and may also be padded
# with metadata specific to the cryptographer. This metadata should be parsed and interpreted in concrete
# implementations of your given cryptographer. Like credit cards, you must also return a string representing
# the token's type, like 'apple_pay' or 'stripe' should your target payment gateway process these tokens.
class PaymentToken
- attr_reader :payment_data, :type
+ attr_reader :payment_data
def initialize(payment_data, options = {})
@payment_data = payment_data
@metadata = options.with_indifferent_access
end