Class: PagSeguro::SubscriptionPaymentOrder::Response
- Inherits:
-
Object
- Object
- PagSeguro::SubscriptionPaymentOrder::Response
- Defined in:
- lib/pagseguro/subscription_payment_order/response.rb
Instance Method Summary collapse
-
#initialize(response, object) ⇒ Response
constructor
A new instance of Response.
- #serialize ⇒ Object
- #success? ⇒ Boolean
Constructor Details
#initialize(response, object) ⇒ Response
Returns a new instance of Response.
4 5 6 7 |
# File 'lib/pagseguro/subscription_payment_order/response.rb', line 4 def initialize(response, object) @response = response @object = object end |
Instance Method Details
#serialize ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/pagseguro/subscription_payment_order/response.rb', line 9 def serialize if success? object.update_attributes serialized_data else object.errors.add response end object end |
#success? ⇒ Boolean
19 20 21 |
# File 'lib/pagseguro/subscription_payment_order/response.rb', line 19 def success? response.success? && response.xml? end |