. */ namespace SP\Domain\User\Dtos; use SP\Domain\User\Services\UserMasterPassStatus; /** * Class UserMasterPassDto */ final readonly class UserMasterPassDto { /** * UserPassResponse constructor. */ public function __construct( private UserMasterPassStatus $userMasterPassStatus, private ?string $clearMasterPass = null, private ?string $cryptMasterPass = null, private ?string $cryptSecuredKey = null ) { } public function getUserMasterPassStatus(): UserMasterPassStatus { return $this->userMasterPassStatus; } public function getCryptMasterPass(): ?string { return $this->cryptMasterPass; } public function getCryptSecuredKey(): ?string { return $this->cryptSecuredKey; } public function getClearMasterPass(): ?string { return $this->clearMasterPass; } }