* @copyright PayPal * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ namespace PaypalAddons\classes\API\Response; class ResponseGetCredentials extends Response { /** @var string*/ protected $clientId; /** @var string*/ protected $secret; /** * @return string */ public function getClientId() { return $this->clientId; } /** * @param string $clientId */ public function setClientId($clientId) { $this->clientId = $clientId; return $this; } /** * @return string */ public function getSecret() { return $this->secret; } /** * @param string $secret */ public function setSecret($secret) { $this->secret = $secret; return $this; } }