. */ namespace SP\Services\User; /** * Class UserPassResponse * * @package SP\DataModel\Dto */ final class UserPassResponse { /** * @var int */ private $status; /** * @var string */ private $cryptMasterPass; /** * @var string */ private $cryptSecuredKey; /** * @var string */ private $clearMasterPass; /** * UserPassResponse constructor. * * @param int $status * @param string $clearUserMPass */ public function __construct($status, $clearUserMPass = null) { $this->status = $status; $this->clearMasterPass = $clearUserMPass; } /** * @return int */ public function getStatus() { return $this->status; } /** * @param int $status */ public function setStatus($status) { $this->status = $status; } /** * @return string */ public function getCryptMasterPass() { return $this->cryptMasterPass; } /** * @param string $cryptMasterPass */ public function setCryptMasterPass($cryptMasterPass) { $this->cryptMasterPass = $cryptMasterPass; } /** * @return string */ public function getCryptSecuredKey() { return $this->cryptSecuredKey; } /** * @param string $cryptSecuredKey */ public function setCryptSecuredKey($cryptSecuredKey) { $this->cryptSecuredKey = $cryptSecuredKey; } /** * @return string */ public function getClearMasterPass() { return $this->clearMasterPass; } /** * @param string $clearMasterPass */ public function setClearMasterPass($clearMasterPass) { $this->clearMasterPass = $clearMasterPass; } }