Class: PayPal::SDK::ButtonManagerRails::DataTypes::AddressVerifyRequestType
- Inherits:
-
AbstractRequestType
- Object
- Core::API::DataTypes::Base
- DataType
- AbstractRequestType
- PayPal::SDK::ButtonManagerRails::DataTypes::AddressVerifyRequestType
- Defined in:
- lib/paypal-sdk/button_manager_rails/data_types.rb
Overview
Email address of buyer to be verified. Required Maximum string length: 255 single-byte characters Input mask: ?@?.??
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
4011 4012 4013 4014 4015 4016 4017 4018 |
# File 'lib/paypal-sdk/button_manager_rails/data_types.rb', line 4011 def self.load_members # Email address of buyer to be verified. Required Maximum string length: 255 single-byte characters Input mask: ?@?.?? object_of :Email, String, :namespace => :ns, :required => true # First line of buyer’s billing or shipping street address to be verified. Required For verification, input value of street address must match the first three single-byte characters of the street address on file for the PayPal account. Maximum string length: 35 single-byte characters Alphanumeric plus - , . ‘ # \ Whitespace and case of input value are ignored. object_of :Street, String, :namespace => :ns, :required => true # Postal code to be verified. Required For verification, input value of postal code must match the first five single-byte characters of the postal code on file for the PayPal account. Maximum string length: 16 single-byte characters Whitespace and case of input value are ignored. object_of :Zip, String, :namespace => :ns, :required => true end |