Class: PaypalServerSdk::PaypalExperienceUserAction
- Inherits:
-
Object
- Object
- PaypalServerSdk::PaypalExperienceUserAction
- Defined in:
- lib/paypal_server_sdk/models/paypal_experience_user_action.rb
Overview
Configures a Continue or Pay Now checkout flow.
Constant Summary collapse
- PAYPAL_EXPERIENCE_USER_ACTION =
[ # After you redirect the customer to the PayPal payment page, a Continue # button appears. Use this option when the final amount is not known when # the checkout flow is initiated and you want to redirect the customer to # the merchant page without processing the payment. CONTINUE = 'CONTINUE'.freeze, # After you redirect the customer to the PayPal payment page, a Pay Now # button appears. Use this option when the final amount is known when the # checkout is initiated and you want to process the payment immediately # when the customer clicks Pay Now. PAY_NOW = 'PAY_NOW'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
23 24 25 26 27 |
# File 'lib/paypal_server_sdk/models/paypal_experience_user_action.rb', line 23 def self.validate(value) return false if value.nil? true end |