PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-pro
/
vendor
/
paypal
/
sdk-core-php
/
lib
/
PayPal
/
Auth
<?php namespace PayPal\Auth; /** * * Represents the older subject based "third party authorization" * New apps can use the more flexible token based authorization */ class PPSubjectAuthorization implements IPPThirdPartyAuthorization { /** * Paypal emailid of the party who has granted API rights * to the API caller. Your API username must have been * granted permission by this third-party to make any particular * PayPal API request. * @var string */ private $subject; public function __construct($subject) { $this->subject = $subject; } public function getSubject() { return $this->subject; } }
[+]
..
[-] PPCertificateCredential.php
[edit]
[-] PPSignatureCredential.php
[edit]
[+]
Oauth
[-] PPTokenAuthorization.php
[edit]
[-] PPSubjectAuthorization.php
[edit]
[+]
Openid
[-] IPPCredential.php
[edit]
[-] IPPThirdPartyAuthorization.php
[edit]