Class: PayPal::SDK::AdaptiveAccounts::DataTypes::GetVerifiedStatusRequest
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::AdaptiveAccounts::DataTypes::GetVerifiedStatusRequest
- Defined in:
- lib/paypal-sdk/adaptive_accounts/data_types.rb
Overview
Deprecated, use accountIdentifier.emailAddress instead
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/paypal-sdk/adaptive_accounts/data_types.rb', line 323 def self.load_members object_of :requestEnvelope, RequestEnvelope, :required => true # Deprecated, use accountIdentifier.emailAddress instead object_of :emailAddress, String # Identifies a PayPal account to which this request is targeted. Caller of this API has to provide ONLY one of these inputs: emailAddress, accountId or mobilePhoneNumber. object_of :accountIdentifier, AccountIdentifierType # matchCriteria determines which field(s) in addition to emailAddress is used to locate the account. Currently, we support matchCriteria of 'NAME' and 'NONE'. object_of :matchCriteria, String, :required => true # Required if matchCriteria is NAME Optional if matchCriteria is NONE object_of :firstName, String # Required if matchCriteria is NAME Optional if matchCriteria is NONE object_of :lastName, String end |