Sha256: 2dc125962f60368c672d11ea7efabbed5ec188236d329854ddd8dec11d36aaa8

Contents?: true

Size: 316 Bytes

Versions: 6

Compression:

Stored size: 316 Bytes

Contents

module FbGraph2
  class Edge
    module PaymentTransactions
      def payment_transactions(params = {})
        payments = self.edge :payment_transactions, params
        payments.collect do |payment|
          Payment.new(payment[:id], payment).authenticate self.access_token
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fb_graph2-0.1.0 lib/fb_graph2/edge/payment_transactions.rb
fb_graph2-0.0.11 lib/fb_graph2/edge/payment_transactions.rb
fb_graph2-0.0.10 lib/fb_graph2/edge/payment_transactions.rb
fb_graph2-0.0.9 lib/fb_graph2/edge/payment_transactions.rb
fb_graph2-0.0.8 lib/fb_graph2/edge/payment_transactions.rb
fb_graph2-0.0.7 lib/fb_graph2/edge/payment_transactions.rb