Sha256: e4ce52a162a696b716d41a6f0d8b919ed3994e50d0dc0758fdf90461701cb414

Contents?: true

Size: 1.14 KB

Versions: 10

Compression:

Stored size: 1.14 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 :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
    attr_reader :us_bank_account_verification
    attr_reader :credit_card_verification

    def initialize(attributes = {}) # :nodoc:
      @attrs = attributes.keys
      attributes.each do |key, value|
        instance_variable_set("@#{key}", value)
      end
      @credit_card_verification = @verification
    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

10 entries across 10 versions & 1 rubygems

Version Path
braintree-4.4.0 lib/braintree/successful_result.rb
braintree-4.3.0 lib/braintree/successful_result.rb
braintree-4.2.0 lib/braintree/successful_result.rb
braintree-4.1.0 lib/braintree/successful_result.rb
braintree-4.0.0 lib/braintree/successful_result.rb
braintree-3.4.0 lib/braintree/successful_result.rb
braintree-3.3.0 lib/braintree/successful_result.rb
braintree-3.2.0 lib/braintree/successful_result.rb
braintree-3.1.0 lib/braintree/successful_result.rb
braintree-3.0.1 lib/braintree/successful_result.rb