Class: PaypalServerSdk::LiabilityShiftIndicator

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

Overview

Liability shift indicator. The outcome of the issuer’s authentication.

Constant Summary collapse

LIABILITY_SHIFT_INDICATOR =
[
  # TODO: Write general description for NO
  NO = 'NO'.freeze,

  # TODO: Write general description for POSSIBLE
  POSSIBLE = 'POSSIBLE'.freeze,

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

Class Method Summary collapse

Class Method Details

.validate(value) ⇒ Object



20
21
22
23
24
# File 'lib/paypal_server_sdk/models/liability_shift_indicator.rb', line 20

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

  true
end