Class: PaypalServerSdk::VenmoWalletExperienceContextUserAction

Inherits:
Object
  • Object
show all
Defined in:
lib/paypal_server_sdk/models/venmo_wallet_experience_context_user_action.rb

Overview

Configures a Continue or Pay Now checkout flow.

Constant Summary collapse

VENMO_WALLET_EXPERIENCE_CONTEXT_USER_ACTION =
[
  # After you redirect the customer to the Venmo 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 Venmo 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

.from_value(value, default_value = CONTINUE) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/paypal_server_sdk/models/venmo_wallet_experience_context_user_action.rb', line 29

def self.from_value(value, default_value = CONTINUE)
  return default_value if value.nil?

  str = value.to_s.strip

  case str.downcase
  when 'continue' then CONTINUE
  when 'pay_now' then PAY_NOW
  else
    default_value
  end
end

.validate(value) ⇒ Object



23
24
25
26
27
# File 'lib/paypal_server_sdk/models/venmo_wallet_experience_context_user_action.rb', line 23

def self.validate(value)
  return false if value.nil?

  true
end