Class: Spreedly::AddPaymentMethod

Inherits:
Transaction show all
Defined in:
lib/spreedly/transactions/add_payment_method.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Transaction

new_from, new_list_from

Methods included from Fields

#field_hash, included, #initialize_fields

Constructor Details

#initialize(xml_doc) ⇒ AddPaymentMethod

Returns a new instance of AddPaymentMethod.



9
10
11
12
# File 'lib/spreedly/transactions/add_payment_method.rb', line 9

def initialize(xml_doc)
  super
  @payment_method = PaymentMethod.new_from(xml_doc.at_xpath('.//payment_method'))
end

Instance Attribute Details

#payment_methodObject (readonly)

Returns the value of attribute payment_method.



7
8
9
# File 'lib/spreedly/transactions/add_payment_method.rb', line 7

def payment_method
  @payment_method
end