createdAt; } public function setCreatedAt(DateTimeImmutable $createdAt): static { $this->createdAt = $createdAt; return $this; } public function getIdentityId(): ?int { return $this->identityId; } public function setIdentityId(?int $identityId): static { $this->identityId = $identityId; return $this; } public function getApiKeyId(): ?int { return $this->apiKeyId; } public function setApiKeyId(?int $apiKeyId): static { $this->apiKeyId = $apiKeyId; return $this; } public function getUrl(): string { return $this->url; } public function setUrl(string $url): static { $this->url = $url; return $this; } public function getMethod(): string { return $this->method; } public function setMethod(string $method): static { $this->method = $method; return $this; } public function getCode(): int { return $this->code; } public function setCode(int $code): static { $this->code = $code; return $this; } public function getIp(): string { return $this->ip; } public function setIp(string $ip): static { $this->ip = $ip; return $this; } public function getResponseTime(): ?float { return $this->responseTime !== null ? round((float) $this->responseTime, 2) : null; } public function setResponseTime(?float $responseTime): static { $this->responseTime = $responseTime !== null ? (string) round($responseTime, 2) : null; return $this; } }