Sha256: 47f654cd965a554029bc65c75b3a8f6bbb57e9630b2e4880db7d70d1da901d3c

Contents?: true

Size: 1.34 KB

Versions: 8

Compression:

Stored size: 1.34 KB

Contents

module Braintree
  class ErrorResult

    attr_reader :credit_card_verification
    attr_reader :errors
    attr_reader :merchant_account
    attr_reader :message
    attr_reader :params
    attr_reader :subscription
    attr_reader :transaction
    attr_reader :verification

    def initialize(gateway, data)
      @gateway = gateway
      @params = data[:params]
      @credit_card_verification = CreditCardVerification._new(data[:verification]) if data[:verification]
      @merchant_account = MerchantAccount._new(gateway, data[:merchant_account]) if data[:merchant_account]
      @message = data[:message]
      @transaction = Transaction._new(gateway, data[:transaction]) if data[:transaction]
      @verification = CreditCardVerification._new(data[:verification]) if data[:verification]
      @subscription = Subscription._new(gateway, data[:subscription]) if data[:subscription]
      @errors = Errors.new(data[:errors])
    end

    def inspect
      if @credit_card_verification
        verification_inspect = " credit_card_verification: #{@credit_card_verification.inspect}"
      end
      if @transaction
        transaction_inspect = " transaction: #{@transaction.inspect}"
      end
      "#<#{self.class} params:{...} errors:<#{@errors._inner_inspect}>#{verification_inspect}#{transaction_inspect}>"
    end

    def success?
      false
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
braintree-4.23.0 lib/braintree/error_result.rb
braintree-4.22.0 lib/braintree/error_result.rb
braintree-4.21.0 lib/braintree/error_result.rb
braintree-4.20.0 lib/braintree/error_result.rb
braintree-4.19.0 lib/braintree/error_result.rb
braintree-4.18.0 lib/braintree/error_result.rb
braintree-4.17.0 lib/braintree/error_result.rb
braintree-4.16.0 lib/braintree/error_result.rb