Sha256: b9bc8ff017dbbc54568ae61aa6339bb1143465b744e0ce8a4407f2beaefa09bf

Contents?: true

Size: 1.04 KB

Versions: 7

Compression:

Stored size: 1.04 KB

Contents

module Braintree
  class SuccessfulResult
    include BaseModule

    attr_reader :address
    attr_reader :apple_pay_options
    attr_reader :credentials
    attr_reader :credit_card
    attr_reader :customer
    attr_reader :disputes
    attr_reader :document_upload
    attr_reader :evidence
    attr_reader :merchant
    attr_reader :merchant_account
    attr_reader :merchant_accounts
    attr_reader :new_transaction
    attr_reader :payment_method
    attr_reader :payment_method_nonce
    attr_reader :paypal_account
    attr_reader :settlement_batch_summary
    attr_reader :subscription
    attr_reader :supported_networks
    attr_reader :transaction

    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.87.0 lib/braintree/successful_result.rb
braintree-2.86.0 lib/braintree/successful_result.rb
braintree-2.85.0 lib/braintree/successful_result.rb
braintree-2.84.0 lib/braintree/successful_result.rb
braintree-2.83.0 lib/braintree/successful_result.rb
braintree-2.82.0 lib/braintree/successful_result.rb
braintree-2.81.0 lib/braintree/successful_result.rb