Class: PayPal::SDK::Merchant::DataTypes::ExternalRememberMeStatusDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::Merchant::DataTypes::ExternalRememberMeStatusDetailsType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
Response information resulting from opt-in operation or current login bypass status.
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
3167 3168 3169 3170 3171 3172 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 3167 def self.load_members # Required field that reports status of opt-in or login bypass attempt. 0 = Success - successful opt-in or ExternalRememberMeID specified in SetExpressCheckout is valid. 1 = Invalid ID - ExternalRememberMeID specified in SetExpressCheckout is invalid. 2 = Internal Error - System error or outage during opt-in or login bypass. Can retry opt-in or login bypass next time. Flow will force full authentication and allow buyer to complete transaction. -1 = None - the return value does not signify any valid remember me status. object_of :ExternalRememberMeStatus, Integer, :namespace => :ebl, :required => true # Identifier returned on external-remember-me-opt-in to allow the merchant to request bypass of PayPal login through external remember me on behalf of the buyer in future transactions. The ExternalRememberMeID is a 17-character alphanumeric (encrypted) string. This field has meaning only to the merchant. object_of :ExternalRememberMeID, String, :namespace => :ebl end |