Class: PaypalServerSdk::PaypalWalletAccountVerificationStatus
- Inherits:
-
Object
- Object
- PaypalServerSdk::PaypalWalletAccountVerificationStatus
- Defined in:
- lib/paypal_server_sdk/models/paypal_wallet_account_verification_status.rb
Overview
The account status indicates whether the buyer has verified the financial details associated with their PayPal account.
Constant Summary collapse
- PAYPAL_WALLET_ACCOUNT_VERIFICATION_STATUS =
[ # The buyer has completed the verification of the financial details # associated with this PayPal account. For example: confirming their bank # account. VERIFIED = 'VERIFIED'.freeze, # The buyer has not completed the verification of the financial details # associated with this PayPal account. For example: confirming their bank # account. UNVERIFIED = 'UNVERIFIED'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
22 23 24 25 26 |
# File 'lib/paypal_server_sdk/models/paypal_wallet_account_verification_status.rb', line 22 def self.validate(value) return false if value.nil? true end |