Class: PayPal::SDK::Merchant::DataTypes::EnterBoardingRequestDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::Merchant::DataTypes::EnterBoardingRequestDetailsType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
Onboarding program code given to you by PayPal. Required Character length and limitations: 64 alphanumeric characters
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2471 def self.load_members # Onboarding program code given to you by PayPal. Required Character length and limitations: 64 alphanumeric characters object_of :ProgramCode, String, :namespace => :ebl # A list of comma-separated values that indicate the PayPal products you are implementing for this merchant: Direct Payment (dp) allows payments by credit card without requiring the customer to have a PayPal account. Express Checkout (ec) allows customers to fund transactions with their PayPal account. Authorization and Capture (auth_settle) allows merchants to verify availability of funds in a PayPal account, but capture them at a later time. Administrative APIs (admin_api) is a collection of the PayPal APIs for transaction searching, getting transaction details, refunding, and mass payments. Required Character length and limitations: 64 alphanumeric characters object_of :ProductList, String, :namespace => :ebl # Any custom information you want to store for this partner Optional Character length and limitations: 256 alphanumeric characters object_of :PartnerCustom, String, :namespace => :ebl # The URL for the logo displayed on the PayPal Partner Welcome Page. Optional Character length and limitations: 2,048 alphanumeric characters object_of :ImageUrl, String, :namespace => :ebl # Marketing category tha configures the graphic displayed n the PayPal Partner Welcome page. object_of :MarketingCategory, MarketingCategoryType, :namespace => :ebl # Information about the merchantâs business object_of :BusinessInfo, BusinessInfoType, :namespace => :ebl # Information about the merchant (the business owner) object_of :OwnerInfo, BusinessOwnerInfoType, :namespace => :ebl # Information about the merchant's bank account object_of :BankAccount, BankAccountDetailsType, :namespace => :ebl end |