Class: PaypalServerSdk::OsType

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

Overview

Operating System type of the device that the buyer is using.

Constant Summary collapse

OS_TYPE =
[
  # Google Android OS.
  ANDROID = 'ANDROID'.freeze,

  # Apple OS typically found in Apple mobile devices.
  IOS = 'IOS'.freeze,

  # Any other OS type.
  OTHER = 'OTHER'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.from_value(value, default_value = ANDROID) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/paypal_server_sdk/models/os_type.rb', line 26

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

  str = value.to_s.strip

  case str.downcase
  when 'android' then ANDROID
  when 'ios' then IOS
  when 'other' then OTHER
  else
    default_value
  end
end

.validate(value) ⇒ Object



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

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

  true
end