getString(0), uuid: $result->getString(1), name: $result->getString(2), created: $result->getInteger(3), ); } public function getUserId(): string { return $this->userId; } public function getUUIDRaw(): string { return $this->uuid; } public function getUUID(): UuidInterface { return Uuid::fromBytes($this->uuid); } public function getName(): string { return $this->name; } public function getCreatedTime(): int { return $this->created; } public function getCreatedAt(): DateTime { return DateTime::fromUnixTimeSeconds($this->created); } }