lib/braintree/credit_card_verification.rb in braintree-2.3.1 vs lib/braintree/credit_card_verification.rb in braintree-2.4.0
- old
+ new
@@ -1,21 +1,22 @@
module Braintree
class CreditCardVerification
include BaseModule
attr_reader :avs_error_response_code, :avs_postal_code_response_code, :avs_street_address_response_code,
- :cvv_response_code, :merchant_account_id, :processor_response_code, :processor_response_text, :status
+ :cvv_response_code, :merchant_account_id, :processor_response_code, :processor_response_text, :status,
+ :gateway_rejection_reason
def initialize(attributes) # :nodoc:
set_instance_variables_from_hash(attributes)
end
def inspect # :nodoc:
attr_order = [
:status, :processor_response_code, :processor_response_text,
:cvv_response_code, :avs_error_response_code,
:avs_postal_code_response_code, :avs_street_address_response_code,
- :merchant_account_id
+ :merchant_account_id, :gateway_rejection_reason
]
formatted_attrs = attr_order.map do |attr|
"#{attr}: #{send(attr).inspect}"
end
"#<#{self.class} #{formatted_attrs.join(", ")}>"