class Braintree::LocalPaymentCompleted

Attributes

payer_id[R]
payment_id[R]
payment_method_nonce[R]
transaction[R]

Public Class Methods

_new(*args) click to toggle source
# File lib/braintree/local_payment_completed.rb, line 19
def self._new(*args)
  self.new(*args)
end

Protected Class Methods

new(attributes) click to toggle source
# File lib/braintree/local_payment_completed.rb, line 10
def initialize(attributes)
  set_instance_variables_from_hash(attributes)
  @transaction = Transaction._new(Configuration.gateway, transaction) unless transaction.nil?
end