Sha256: 895ab77c07920500331a0ec5cbbbb62bbf9948817cbe77c76cab451281e6a957

Contents?: true

Size: 440 Bytes

Versions: 8

Compression:

Stored size: 440 Bytes

Contents

module Braintree
  class LocalPaymentFunded
    include BaseModule

    attr_reader :payment_id
    attr_reader :payment_context_id
    attr_reader :transaction

    def initialize(attributes)
      set_instance_variables_from_hash(attributes)
      @transaction = Transaction._new(Configuration.gateway, transaction)
    end

    class << self
      protected :new
    end

    def self._new(*args)
      self.new(*args)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
braintree-4.23.0 lib/braintree/local_payment_funded.rb
braintree-4.22.0 lib/braintree/local_payment_funded.rb
braintree-4.21.0 lib/braintree/local_payment_funded.rb
braintree-4.20.0 lib/braintree/local_payment_funded.rb
braintree-4.19.0 lib/braintree/local_payment_funded.rb
braintree-4.18.0 lib/braintree/local_payment_funded.rb
braintree-4.17.0 lib/braintree/local_payment_funded.rb
braintree-4.16.0 lib/braintree/local_payment_funded.rb