. */ namespace SP\DataModel; use SP\Domain\Common\Adapters\DataModelInterface; use SP\Domain\Common\Models\Model; /** * Class AuthTokenData * * @package SP\DataModel */ class AuthTokenData extends Model implements DataModelInterface { public ?int $userId = null; public ?string $token = null; public ?int $createdBy = null; public ?int $startDate = null; public ?int $actionId = null; public ?string $hash = null; protected ?int $id = null; protected ?string $vault = null; public function getId(): ?int { return (int)$this->id; } public function getVault(): ?string { return $this->vault; } public function getUserId(): ?int { return $this->userId; } public function getToken(): ?string { return $this->token; } public function getCreatedBy(): ?int { return $this->createdBy; } public function getStartDate(): ?int { return $this->startDate; } public function getName(): ?string { return null; } public function getActionId(): ?int { return $this->actionId; } public function getHash(): ?string { return $this->hash; } }