lib/braintree/transaction/credit_card_details.rb in braintree-1.2.1 vs lib/braintree/transaction/credit_card_details.rb in braintree-2.0.0
- old
+ new
@@ -1,18 +1,18 @@
module Braintree
class Transaction
class CreditCardDetails # :nodoc:
include BaseModule
- attr_reader :bin, :card_type, :customer_location, :expiration_month,
+ attr_reader :bin, :card_type, :cardholder_name, :customer_location, :expiration_month,
:expiration_year, :last_4, :token
def initialize(attributes)
set_instance_variables_from_hash attributes unless attributes.nil?
end
def inspect
- attr_order = [:token, :bin, :last_4, :card_type, :expiration_date, :customer_location]
+ attr_order = [:token, :bin, :last_4, :card_type, :expiration_date, :cardholder_name, :customer_location]
formatted_attrs = attr_order.map do |attr|
"#{attr}: #{send(attr).inspect}"
end
"#<#{formatted_attrs.join(", ")}>"
end