4 * Interface that represents API credentials
6 abstract class IPPCredential
10 * @var IPPThirdPartyAuthorization
12 protected $thirdPartyAuthorization;
14 public function setThirdPartyAuthorization($thirdPartyAuthorization) {
15 $this->thirdPartyAuthorization = $thirdPartyAuthorization;
18 public function getThirdPartyAuthorization() {
19 return $this->thirdPartyAuthorization;
22 public abstract function validate();