Sha256: f830123b368ebb1d0901ac105691bf7d8034d24bbd9eec900489e8caebb33e3b

Contents?: true

Size: 1.4 KB

Versions: 8

Compression:

Stored size: 1.4 KB

Contents

module Braintree
  class Disbursement
    include BaseModule

    attr_reader :amount
    attr_reader :disbursement_date
    attr_reader :exception_message
    attr_reader :follow_up_action
    attr_reader :id
    attr_reader :merchant_account
    attr_reader :retry
    attr_reader :success
    attr_reader :transaction_ids

    alias_method :success?, :success

    def initialize(gateway, attributes) # :nodoc:
      @gateway = gateway
      set_instance_variables_from_hash(attributes)
      @amount = Util.to_big_decimal(amount)
      @disbursement_date = Date.parse(disbursement_date)
      @merchant_account = MerchantAccount._new(gateway, @merchant_account)
    end

    def transactions
      transactions = @gateway.transaction.search do |search|
        search.ids.in transaction_ids
      end
    end

    def inspect # :nodoc:
      nice_attributes = self.class._inspect_attributes.map { |attr| "#{attr}: #{send(attr).inspect}" }
      nice_attributes << "amount: #{self.amount.to_s("F").inspect}"
      nice_attributes << "disbursement_date: #{self.disbursement_date.to_s}"
      "#<#{self.class} #{nice_attributes.join(', ')}>"
    end

    class << self
      protected :new
      def _new(*args) # :nodoc:
        self.new *args
      end
    end

    def self._inspect_attributes # :nodoc:
      [:id, :exception_message, :follow_up_action, :merchant_account, :transaction_ids, :retry, :success]
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
braintree-2.88.0 lib/braintree/disbursement.rb
braintree-2.87.0 lib/braintree/disbursement.rb
braintree-2.86.0 lib/braintree/disbursement.rb
braintree-2.85.0 lib/braintree/disbursement.rb
braintree-2.84.0 lib/braintree/disbursement.rb
braintree-2.83.0 lib/braintree/disbursement.rb
braintree-2.82.0 lib/braintree/disbursement.rb
braintree-2.81.0 lib/braintree/disbursement.rb