Class: Paypal::Express::Response
- Inherits:
-
NVP::Response
- Object
- Base
- NVP::Response
- Paypal::Express::Response
- Defined in:
- lib/paypal/express/response.rb
Instance Attribute Summary collapse
-
#mobile ⇒ Object
Returns the value of attribute mobile.
-
#pay_on_paypal ⇒ Object
Returns the value of attribute pay_on_paypal.
Attributes inherited from NVP::Response
#amount, #bill_to, #billing_agreement, #description, #insurance_option_selected, #items, #payer, #payment_info, #payment_responses, #recurring, #refund, #ship_to, #shipping_options_is_default, #success_page_redirect_requested
Instance Method Summary collapse
-
#initialize(response, options = {}) ⇒ Response
constructor
A new instance of Response.
- #popup_uri ⇒ Object
- #redirect_uri ⇒ Object
Methods included from Util
#==, formatted_amount, #numeric_attribute?, to_numeric
Constructor Details
#initialize(response, options = {}) ⇒ Response
Returns a new instance of Response.
6 7 8 9 10 |
# File 'lib/paypal/express/response.rb', line 6 def initialize(response, = {}) super response @pay_on_paypal = [:pay_on_paypal] @mobile = [:mobile] end |
Instance Attribute Details
#mobile ⇒ Object
Returns the value of attribute mobile.
4 5 6 |
# File 'lib/paypal/express/response.rb', line 4 def mobile @mobile end |
#pay_on_paypal ⇒ Object
Returns the value of attribute pay_on_paypal.
4 5 6 |
# File 'lib/paypal/express/response.rb', line 4 def pay_on_paypal @pay_on_paypal end |
Instance Method Details
#popup_uri ⇒ Object
18 19 20 21 22 |
# File 'lib/paypal/express/response.rb', line 18 def popup_uri endpoint = URI.parse Paypal.popup_endpoint endpoint.query = query.to_query endpoint.to_s end |