* @copyright PayPal * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ namespace PaypalAddons\classes\API\Response; class ResponseCreateProfileExperience extends Response { /** @var string*/ protected $idProfileExperience; /** * @return string */ public function getIdProfileExperience() { return (string) $this->idProfileExperience; } /** * @param string $idProdileExperience * @return ResponseCreateProfileExperience */ public function setIdProfileExperience($idProfileExperience) { if (is_string($idProfileExperience) === false) { $this->idProfileExperience = ''; return $this; } $this->idProfileExperience = $idProfileExperience; return $this; } }