Class: PayPal::SDK::Merchant::DataTypes::APICredentialsType

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

Overview

APICredentialsType

Class Method Summary collapse

Class Method Details

.load_membersObject



2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2591

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