Sha256: 3483be7536f8706af89c8d597c00512fc67bf5f42cc0e2351453aa6365843ffb

Contents?: true

Size: 718 Bytes

Versions: 7

Compression:

Stored size: 718 Bytes

Contents

module Braintree
  class SuccessfulResult
    include BaseModule

    attr_reader :address, :credit_card, :customer, :merchant_account, :payment_method, :settlement_batch_summary, :subscription, :new_transaction, :transaction, :payment_method_nonce, :credentials, :merchant, :supported_networks, :paypal_account

    def initialize(attributes = {}) # :nodoc:
      @attrs = attributes.keys
      attributes.each do |key, value|
        instance_variable_set("@#{key}", value)
      end
    end

    def inspect # :nodoc:
      inspected_attributes = @attrs.map { |attr| "#{attr}:#{send(attr).inspect}" }
      "#<#{self.class} #{inspected_attributes.join(" ")}>"
    end

    def success?
      true
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
braintree-2.70.0 lib/braintree/successful_result.rb
braintree-2.69.1 lib/braintree/successful_result.rb
braintree-2.69.0 lib/braintree/successful_result.rb
braintree-2.68.2 lib/braintree/successful_result.rb
braintree-2.68.1 lib/braintree/successful_result.rb
braintree-2.68.0 lib/braintree/successful_result.rb
braintree-2.67.0 lib/braintree/successful_result.rb