Sha256: a74a5d4b35c7d47925df844ef5224402b4ead6445b26d08097108a2928e1a33a

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

module Braintree
  # An ErrorResult will be returned from non-bang methods when
  # validations fail. It will provide access to the params passed
  # to the server. The params are primarily useful for re-populaing
  # web forms when using transparent redirect. ErrorResult also
  # provides access to the validation errors.
  #
  #   result = Braintree::Customer.create(:email => "invalid.email.address")
  #   if result.success?
  #     # have a SuccessfulResult
  #   else
  #     # have an ErrorResult
  #     puts "Validations failed when attempting to create customer."
  #     result.errors.for(:customer).each do |error|
  #       puts error.message
  #     end
  #   end
  class ErrorResult

    attr_reader :credit_card_verification, :transaction, :errors, :params

    def initialize(data) # :nodoc:
      @params = data[:params]
      @credit_card_verification = CreditCardVerification._new(data[:verification]) if data[:verification]
      @transaction = Transaction._new(data[:transaction]) if data[:transaction]
      @errors = Errors.new(data[:errors])
    end

    def inspect # :nodoc:
      "#<#{self.class} params:{...} errors:<#{@errors._inner_inspect}>>"
    end

    # Always returns false.
    def success?
      false
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
braintree-2.2.0 lib/braintree/error_result.rb
braintree-2.1.0 lib/braintree/error_result.rb
braintree-2.0.0 lib/braintree/error_result.rb