Class: PaypalServerSdk::PaypalWalletVaultStatus

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

Overview

The vault status.

Constant Summary collapse

PAYPAL_WALLET_VAULT_STATUS =
[
  # TODO: Write general description for VAULTED
  VAULTED = 'VAULTED'.freeze,

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

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

Class Method Summary collapse

Class Method Details

.validate(value) ⇒ Object



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

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

  true
end