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