class PayPal::SDK::ButtonManagerRails::DataTypes::APICredentialsType
Public Class Methods
load_members()
click to toggle source
# File lib/paypal-sdk/button_manager_rails/data_types.rb, line 2532 def self.load_members # Merchantâs PayPal API usernameCharacter length and limitations: 128 alphanumeric characters object_of :Username, String, :namespace => :ebl # Merchantâs PayPal API passwordCharacter length and limitations: 40 alphanumeric characters object_of :Password, String, :namespace => :ebl # Merchantâs PayPal API signature, if one exists. Character length and limitations: 256 alphanumeric characters object_of :Signature, String, :namespace => :ebl # Merchantâs PayPal API certificate in PEM format, if one exists The certificate consists of two parts: the private key (2,048 bytes) and the certificate proper (4,000 bytes). Character length and limitations: 6,048 alphanumeric characters object_of :Certificate, String, :namespace => :ebl # Merchantâs PayPal API authentication mechanism. Auth-None: no authentication mechanism on file Cert: API certificate Sign: API signature Character length and limitations: 9 alphanumeric characters object_of :Type, APIAuthenticationType, :namespace => :ebl end