Class: PayPal::SDK::AdaptiveAccounts::DataTypes::CreateAccountWebOptionsType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/adaptive_accounts/data_types.rb

Overview

Ask end-user to also initiate confirmation of their mobile phone. This number must be supplied by the API caller (using mobilePhoneNumber) Default=false.

Class Method Summary collapse

Class Method Details

.load_membersObject



547
548
549
550
551
552
553
554
555
556
557
558
559
# File 'lib/paypal-sdk/adaptive_accounts/data_types.rb', line 547

def self.load_members
  object_of :returnUrl, String
  object_of :showAddCreditCard, Boolean
  # Ask end-user to also initiate confirmation of their mobile phone. This number must be supplied by the API caller (using mobilePhoneNumber) Default=false. 
  object_of :showMobileConfirm, Boolean
  object_of :returnUrlDescription, String
  # If provided, end user will go through a single page sign-up flow on a Mini Browser. If not provided, flow defaults to the Multi-page flow that is full size. 
  object_of :useMiniBrowser, Boolean
  # Indicates the frequency of the reminder emails sent to the PayPal user after CreateAccount. Used only when registrationType is Web. Valid values: DEFAULT: All reminder emails will be sent (same behaviour as when this paramter is not present) NONE: No reminder emails will be sent (More values to be added in future) 
  object_of :reminderEmailFrequency, String
  # Indicates if the Return URL is used to confirm email. On accessing the Return URL successfully, confirm the email if this parameter is true, otherwise, do not confirm the email. Used only when registrationType is Web. Valid values (mixed case): true: Append the Email Confirmation Code to the Return URL. false: Do not append the Email Confirmation Code to the Return URL. 
  object_of :confirmEmail, String
end