Class: PagSeguro::ManualSubscriptionCharger::ResponseSerializer
- Inherits:
-
Object
- Object
- PagSeguro::ManualSubscriptionCharger::ResponseSerializer
- Defined in:
- lib/pagseguro/manual_subscription_charger/response_serializer.rb
Instance Attribute Summary collapse
-
#xml ⇒ Object
readonly
Returns the value of attribute xml.
Instance Method Summary collapse
-
#initialize(xml) ⇒ ResponseSerializer
constructor
A new instance of ResponseSerializer.
- #serialize ⇒ Object
Constructor Details
#initialize(xml) ⇒ ResponseSerializer
Returns a new instance of ResponseSerializer.
6 7 8 |
# File 'lib/pagseguro/manual_subscription_charger/response_serializer.rb', line 6 def initialize(xml) @xml = xml end |
Instance Attribute Details
#xml ⇒ Object (readonly)
Returns the value of attribute xml.
4 5 6 |
# File 'lib/pagseguro/manual_subscription_charger/response_serializer.rb', line 4 def xml @xml end |
Instance Method Details
#serialize ⇒ Object
10 11 12 13 14 |
# File 'lib/pagseguro/manual_subscription_charger/response_serializer.rb', line 10 def serialize {}.tap do |data| data[:transaction_code] = xml.css('result > transactionCode').text end end |