Class: PaypalServerSdk::PayPalExperienceUserAction

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

Overview

Configures a <strong>Continue</strong> or <strong>Pay Now</strong> checkout flow.

Constant Summary collapse

PAY_PAL_EXPERIENCE_USER_ACTION =
[
  # TODO: Write general description for CONTINUE
  CONTINUE = 'CONTINUE'.freeze,

  # TODO: Write general description for PAY_NOW
  PAY_NOW = 'PAY_NOW'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.validate(value) ⇒ Object



18
19
20
21
22
# File 'lib/paypal_server_sdk/models/pay_pal_experience_user_action.rb', line 18

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

  true
end