From 9613c34535c8ef675a0d5e129ca4a23b1ee6fcc9 Mon Sep 17 00:00:00 2001 From: Orkun Date: Wed, 4 Sep 2024 14:22:29 +0300 Subject: [PATCH] fix: use linter with current config via docker --- scripts/generate.sh | 2 +- src/Model/ASN.php | 2 + src/Model/BotdDetectionResult.php | 2 + src/Model/BotdResult.php | 2 + src/Model/BrowserDetails.php | 2 + src/Model/Confidence.php | 2 + src/Model/DataCenter.php | 2 + src/Model/DeprecatedIPLocation.php | 12 +++++ src/Model/DeprecatedIPLocationCity.php | 2 + src/Model/ErrorCommon403Response.php | 2 + src/Model/ErrorCommon429Response.php | 2 + src/Model/ErrorEvent404Response.php | 2 + src/Model/ErrorUpdateEvent400Response.php | 2 + src/Model/ErrorUpdateEvent409Response.php | 2 + src/Model/ErrorVisitor400Response.php | 2 + src/Model/ErrorVisitor404Response.php | 2 + src/Model/EventResponse.php | 2 + src/Model/EventUpdateRequest.php | 6 +++ src/Model/HighActivityResult.php | 2 + src/Model/IPLocation.php | 12 +++++ src/Model/IPLocationCity.php | 2 + src/Model/IpInfoResult.php | 4 ++ src/Model/IpInfoResultV4.php | 4 ++ src/Model/IpInfoResultV6.php | 4 ++ src/Model/ProductsResponse.php | 48 +++++++++++++++++ src/Model/ProductsResponseBotd.php | 4 ++ src/Model/ProductsResponseIdentification.php | 4 ++ .../ProductsResponseIdentificationData.php | 6 +++ src/Model/Response.php | 4 ++ src/Model/ResponseVisits.php | 6 +++ src/Model/SignalResponseClonedApp.php | 4 ++ src/Model/SignalResponseDeveloperTools.php | 4 ++ src/Model/SignalResponseEmulator.php | 4 ++ src/Model/SignalResponseFactoryReset.php | 4 ++ src/Model/SignalResponseFrida.php | 4 ++ src/Model/SignalResponseHighActivity.php | 4 ++ src/Model/SignalResponseIncognito.php | 4 ++ src/Model/SignalResponseIpBlocklist.php | 4 ++ src/Model/SignalResponseIpInfo.php | 4 ++ src/Model/SignalResponseJailbroken.php | 4 ++ src/Model/SignalResponseLocationSpoofing.php | 4 ++ src/Model/SignalResponsePrivacySettings.php | 4 ++ src/Model/SignalResponseProxy.php | 4 ++ .../SignalResponseRawDeviceAttributes.php | 4 ++ src/Model/SignalResponseRemoteControl.php | 4 ++ src/Model/SignalResponseRootApps.php | 4 ++ src/Model/SignalResponseSuspectScore.php | 4 ++ src/Model/SignalResponseTampering.php | 4 ++ src/Model/SignalResponseTor.php | 4 ++ src/Model/SignalResponseVelocity.php | 4 ++ src/Model/SignalResponseVirtualMachine.php | 4 ++ src/Model/SignalResponseVpn.php | 4 ++ src/Model/Subdivision.php | 4 ++ src/Model/VelocityIntervalResult.php | 2 + src/Model/VelocityIntervals.php | 2 + src/Model/Visit.php | 6 +++ src/Model/VpnResult.php | 2 + src/Model/WebhookVisit.php | 54 +++++++++++++++++++ 58 files changed, 307 insertions(+), 1 deletion(-) diff --git a/scripts/generate.sh b/scripts/generate.sh index 9113d8af..2ca7bd38 100755 --- a/scripts/generate.sh +++ b/scripts/generate.sh @@ -40,7 +40,7 @@ rm -f ./src/Model/* java -jar ./bin/swagger-codegen-cli.jar generate -t ./template -l php -i ./res/fingerprint-server-api.yaml -o ./ -c config.json -docker run --rm -v $(pwd):/code ghcr.io/php-cs-fixer/php-cs-fixer:${FIXER_VERSION:-3-php8.3} fix +docker run --rm -v $(pwd):/code ghcr.io/php-cs-fixer/php-cs-fixer:${FIXER_VERSION:-3-php8.3} fix --config=/code/.php-cs-fixer.php /code/src # fix invalid code generated for structure with additionalProperties ( diff --git a/src/Model/ASN.php b/src/Model/ASN.php index 5bffc27b..6e544e45 100644 --- a/src/Model/ASN.php +++ b/src/Model/ASN.php @@ -256,6 +256,8 @@ public function setNetwork(string $network): self /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/BotdDetectionResult.php b/src/Model/BotdDetectionResult.php index 2bb3d40c..27120931 100644 --- a/src/Model/BotdDetectionResult.php +++ b/src/Model/BotdDetectionResult.php @@ -260,6 +260,8 @@ public function setResult(string $result): self /** * Gets type. + * + * @return ?string */ public function getType(): ?string { diff --git a/src/Model/BotdResult.php b/src/Model/BotdResult.php index eaa02aca..178a37d2 100644 --- a/src/Model/BotdResult.php +++ b/src/Model/BotdResult.php @@ -360,6 +360,8 @@ public function setRequestId(string $request_id): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { diff --git a/src/Model/BrowserDetails.php b/src/Model/BrowserDetails.php index cc8d8250..d04d9bc8 100644 --- a/src/Model/BrowserDetails.php +++ b/src/Model/BrowserDetails.php @@ -411,6 +411,8 @@ public function setUserAgent(string $user_agent): self /** * Gets bot_probability. + * + * @return ?int */ public function getBotProbability(): ?int { diff --git a/src/Model/Confidence.php b/src/Model/Confidence.php index 4ecbc53a..9aeb20db 100644 --- a/src/Model/Confidence.php +++ b/src/Model/Confidence.php @@ -225,6 +225,8 @@ public function setScore(float $score): self /** * Gets revision. + * + * @return ?string */ public function getRevision(): ?string { diff --git a/src/Model/DataCenter.php b/src/Model/DataCenter.php index cd6edc93..1b8c9294 100644 --- a/src/Model/DataCenter.php +++ b/src/Model/DataCenter.php @@ -225,6 +225,8 @@ public function setResult(bool $result): self /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/DeprecatedIPLocation.php b/src/Model/DeprecatedIPLocation.php index 92ec70fc..9739584c 100644 --- a/src/Model/DeprecatedIPLocation.php +++ b/src/Model/DeprecatedIPLocation.php @@ -241,6 +241,8 @@ public function valid(): bool /** * Gets accuracy_radius. + * + * @return ?int */ public function getAccuracyRadius(): ?int { @@ -311,6 +313,8 @@ public function setLongitude(?float $longitude): self /** * Gets postal_code. + * + * @return ?string */ public function getPostalCode(): ?string { @@ -333,6 +337,8 @@ public function setPostalCode(?string $postal_code): self /** * Gets timezone. + * + * @return ?string */ public function getTimezone(): ?string { @@ -355,6 +361,8 @@ public function setTimezone(?string $timezone): self /** * Gets city. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocationCity */ public function getCity(): ?DeprecatedIPLocationCity { @@ -377,6 +385,8 @@ public function setCity(?DeprecatedIPLocationCity $city): self /** * Gets country. + * + * @return ?\Fingerprint\ServerAPI\Model\Location */ public function getCountry(): ?Location { @@ -399,6 +409,8 @@ public function setCountry(?Location $country): self /** * Gets continent. + * + * @return ?\Fingerprint\ServerAPI\Model\Location */ public function getContinent(): ?Location { diff --git a/src/Model/DeprecatedIPLocationCity.php b/src/Model/DeprecatedIPLocationCity.php index 80b25d81..fdffb4e1 100644 --- a/src/Model/DeprecatedIPLocationCity.php +++ b/src/Model/DeprecatedIPLocationCity.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/ErrorCommon403Response.php b/src/Model/ErrorCommon403Response.php index 72801e89..1afa5e6e 100644 --- a/src/Model/ErrorCommon403Response.php +++ b/src/Model/ErrorCommon403Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\Common403ErrorResponse */ public function getError(): ?Common403ErrorResponse { diff --git a/src/Model/ErrorCommon429Response.php b/src/Model/ErrorCommon429Response.php index ef544255..d2dc070d 100644 --- a/src/Model/ErrorCommon429Response.php +++ b/src/Model/ErrorCommon429Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorCommon429ResponseError */ public function getError(): ?ErrorCommon429ResponseError { diff --git a/src/Model/ErrorEvent404Response.php b/src/Model/ErrorEvent404Response.php index 2142983c..b03ce283 100644 --- a/src/Model/ErrorEvent404Response.php +++ b/src/Model/ErrorEvent404Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorEvent404ResponseError */ public function getError(): ?ErrorEvent404ResponseError { diff --git a/src/Model/ErrorUpdateEvent400Response.php b/src/Model/ErrorUpdateEvent400Response.php index f2157ca0..06737e39 100644 --- a/src/Model/ErrorUpdateEvent400Response.php +++ b/src/Model/ErrorUpdateEvent400Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorUpdateEvent400ResponseError */ public function getError(): ?ErrorUpdateEvent400ResponseError { diff --git a/src/Model/ErrorUpdateEvent409Response.php b/src/Model/ErrorUpdateEvent409Response.php index 3e1bed4d..5e1a0590 100644 --- a/src/Model/ErrorUpdateEvent409Response.php +++ b/src/Model/ErrorUpdateEvent409Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorUpdateEvent409ResponseError */ public function getError(): ?ErrorUpdateEvent409ResponseError { diff --git a/src/Model/ErrorVisitor400Response.php b/src/Model/ErrorVisitor400Response.php index b8069300..8add5b42 100644 --- a/src/Model/ErrorVisitor400Response.php +++ b/src/Model/ErrorVisitor400Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorVisitor400ResponseError */ public function getError(): ?ErrorVisitor400ResponseError { diff --git a/src/Model/ErrorVisitor404Response.php b/src/Model/ErrorVisitor404Response.php index 844c224b..d0eac080 100644 --- a/src/Model/ErrorVisitor404Response.php +++ b/src/Model/ErrorVisitor404Response.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorVisitor404ResponseError */ public function getError(): ?ErrorVisitor404ResponseError { diff --git a/src/Model/EventResponse.php b/src/Model/EventResponse.php index 4cf0bcb7..ee5b3fbe 100644 --- a/src/Model/EventResponse.php +++ b/src/Model/EventResponse.php @@ -227,6 +227,8 @@ public function setProducts(ProductsResponse $products): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/EventUpdateRequest.php b/src/Model/EventUpdateRequest.php index 57bf7668..ebcd6941 100644 --- a/src/Model/EventUpdateRequest.php +++ b/src/Model/EventUpdateRequest.php @@ -203,6 +203,8 @@ public function valid(): bool /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -225,6 +227,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets tag. + * + * @return ?object */ public function getTag(): ?object { @@ -247,6 +251,8 @@ public function setTag(?object $tag): self /** * Gets suspect. + * + * @return ?bool */ public function getSuspect(): ?bool { diff --git a/src/Model/HighActivityResult.php b/src/Model/HighActivityResult.php index ab323cad..20879925 100644 --- a/src/Model/HighActivityResult.php +++ b/src/Model/HighActivityResult.php @@ -225,6 +225,8 @@ public function setResult(bool $result): self /** * Gets daily_requests. + * + * @return ?float */ public function getDailyRequests(): ?float { diff --git a/src/Model/IPLocation.php b/src/Model/IPLocation.php index 057d545b..6f769e05 100644 --- a/src/Model/IPLocation.php +++ b/src/Model/IPLocation.php @@ -239,6 +239,8 @@ public function valid(): bool /** * Gets accuracy_radius. + * + * @return ?int */ public function getAccuracyRadius(): ?int { @@ -309,6 +311,8 @@ public function setLongitude(?float $longitude): self /** * Gets postal_code. + * + * @return ?string */ public function getPostalCode(): ?string { @@ -331,6 +335,8 @@ public function setPostalCode(?string $postal_code): self /** * Gets timezone. + * + * @return ?string */ public function getTimezone(): ?string { @@ -353,6 +359,8 @@ public function setTimezone(?string $timezone): self /** * Gets city. + * + * @return ?\Fingerprint\ServerAPI\Model\IPLocationCity */ public function getCity(): ?IPLocationCity { @@ -375,6 +383,8 @@ public function setCity(?IPLocationCity $city): self /** * Gets country. + * + * @return ?\Fingerprint\ServerAPI\Model\Location */ public function getCountry(): ?Location { @@ -397,6 +407,8 @@ public function setCountry(?Location $country): self /** * Gets continent. + * + * @return ?\Fingerprint\ServerAPI\Model\Location */ public function getContinent(): ?Location { diff --git a/src/Model/IPLocationCity.php b/src/Model/IPLocationCity.php index 5e066dcb..c0637bf3 100644 --- a/src/Model/IPLocationCity.php +++ b/src/Model/IPLocationCity.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/IpInfoResult.php b/src/Model/IpInfoResult.php index f414d4fb..2a6a7d98 100644 --- a/src/Model/IpInfoResult.php +++ b/src/Model/IpInfoResult.php @@ -199,6 +199,8 @@ public function valid(): bool /** * Gets v4. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResultV4 */ public function getV4(): ?IpInfoResultV4 { @@ -221,6 +223,8 @@ public function setV4(?IpInfoResultV4 $v4): self /** * Gets v6. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResultV6 */ public function getV6(): ?IpInfoResultV6 { diff --git a/src/Model/IpInfoResultV4.php b/src/Model/IpInfoResultV4.php index 28e3dc98..8a2f36d3 100644 --- a/src/Model/IpInfoResultV4.php +++ b/src/Model/IpInfoResultV4.php @@ -262,6 +262,8 @@ public function setGeolocation(IPLocation $geolocation): self /** * Gets asn. + * + * @return ?\Fingerprint\ServerAPI\Model\ASN */ public function getAsn(): ?ASN { @@ -284,6 +286,8 @@ public function setAsn(?ASN $asn): self /** * Gets datacenter. + * + * @return ?\Fingerprint\ServerAPI\Model\DataCenter */ public function getDatacenter(): ?DataCenter { diff --git a/src/Model/IpInfoResultV6.php b/src/Model/IpInfoResultV6.php index 3916d40f..0774ae9c 100644 --- a/src/Model/IpInfoResultV6.php +++ b/src/Model/IpInfoResultV6.php @@ -262,6 +262,8 @@ public function setGeolocation(IPLocation $geolocation): self /** * Gets asn. + * + * @return ?\Fingerprint\ServerAPI\Model\ASN */ public function getAsn(): ?ASN { @@ -284,6 +286,8 @@ public function setAsn(?ASN $asn): self /** * Gets datacenter. + * + * @return ?\Fingerprint\ServerAPI\Model\DataCenter */ public function getDatacenter(): ?DataCenter { diff --git a/src/Model/ProductsResponse.php b/src/Model/ProductsResponse.php index 684f78fc..16649fd8 100644 --- a/src/Model/ProductsResponse.php +++ b/src/Model/ProductsResponse.php @@ -331,6 +331,8 @@ public function valid(): bool /** * Gets identification. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductsResponseIdentification */ public function getIdentification(): ?ProductsResponseIdentification { @@ -353,6 +355,8 @@ public function setIdentification(?ProductsResponseIdentification $identificatio /** * Gets botd. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductsResponseBotd */ public function getBotd(): ?ProductsResponseBotd { @@ -375,6 +379,8 @@ public function setBotd(?ProductsResponseBotd $botd): self /** * Gets ip_info. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseIpInfo */ public function getIpInfo(): ?SignalResponseIpInfo { @@ -397,6 +403,8 @@ public function setIpInfo(?SignalResponseIpInfo $ip_info): self /** * Gets incognito. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseIncognito */ public function getIncognito(): ?SignalResponseIncognito { @@ -419,6 +427,8 @@ public function setIncognito(?SignalResponseIncognito $incognito): self /** * Gets root_apps. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseRootApps */ public function getRootApps(): ?SignalResponseRootApps { @@ -441,6 +451,8 @@ public function setRootApps(?SignalResponseRootApps $root_apps): self /** * Gets emulator. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseEmulator */ public function getEmulator(): ?SignalResponseEmulator { @@ -463,6 +475,8 @@ public function setEmulator(?SignalResponseEmulator $emulator): self /** * Gets cloned_app. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseClonedApp */ public function getClonedApp(): ?SignalResponseClonedApp { @@ -485,6 +499,8 @@ public function setClonedApp(?SignalResponseClonedApp $cloned_app): self /** * Gets factory_reset. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseFactoryReset */ public function getFactoryReset(): ?SignalResponseFactoryReset { @@ -507,6 +523,8 @@ public function setFactoryReset(?SignalResponseFactoryReset $factory_reset): sel /** * Gets jailbroken. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseJailbroken */ public function getJailbroken(): ?SignalResponseJailbroken { @@ -529,6 +547,8 @@ public function setJailbroken(?SignalResponseJailbroken $jailbroken): self /** * Gets frida. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseFrida */ public function getFrida(): ?SignalResponseFrida { @@ -551,6 +571,8 @@ public function setFrida(?SignalResponseFrida $frida): self /** * Gets ip_blocklist. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseIpBlocklist */ public function getIpBlocklist(): ?SignalResponseIpBlocklist { @@ -573,6 +595,8 @@ public function setIpBlocklist(?SignalResponseIpBlocklist $ip_blocklist): self /** * Gets tor. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseTor */ public function getTor(): ?SignalResponseTor { @@ -595,6 +619,8 @@ public function setTor(?SignalResponseTor $tor): self /** * Gets privacy_settings. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponsePrivacySettings */ public function getPrivacySettings(): ?SignalResponsePrivacySettings { @@ -617,6 +643,8 @@ public function setPrivacySettings(?SignalResponsePrivacySettings $privacy_setti /** * Gets virtual_machine. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseVirtualMachine */ public function getVirtualMachine(): ?SignalResponseVirtualMachine { @@ -639,6 +667,8 @@ public function setVirtualMachine(?SignalResponseVirtualMachine $virtual_machine /** * Gets vpn. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseVpn */ public function getVpn(): ?SignalResponseVpn { @@ -661,6 +691,8 @@ public function setVpn(?SignalResponseVpn $vpn): self /** * Gets proxy. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseProxy */ public function getProxy(): ?SignalResponseProxy { @@ -683,6 +715,8 @@ public function setProxy(?SignalResponseProxy $proxy): self /** * Gets tampering. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseTampering */ public function getTampering(): ?SignalResponseTampering { @@ -705,6 +739,8 @@ public function setTampering(?SignalResponseTampering $tampering): self /** * Gets high_activity. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseHighActivity */ public function getHighActivity(): ?SignalResponseHighActivity { @@ -727,6 +763,8 @@ public function setHighActivity(?SignalResponseHighActivity $high_activity): sel /** * Gets location_spoofing. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseLocationSpoofing */ public function getLocationSpoofing(): ?SignalResponseLocationSpoofing { @@ -749,6 +787,8 @@ public function setLocationSpoofing(?SignalResponseLocationSpoofing $location_sp /** * Gets suspect_score. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseSuspectScore */ public function getSuspectScore(): ?SignalResponseSuspectScore { @@ -771,6 +811,8 @@ public function setSuspectScore(?SignalResponseSuspectScore $suspect_score): sel /** * Gets raw_device_attributes. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseRawDeviceAttributes */ public function getRawDeviceAttributes(): ?SignalResponseRawDeviceAttributes { @@ -793,6 +835,8 @@ public function setRawDeviceAttributes(?SignalResponseRawDeviceAttributes $raw_d /** * Gets remote_control. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseRemoteControl */ public function getRemoteControl(): ?SignalResponseRemoteControl { @@ -815,6 +859,8 @@ public function setRemoteControl(?SignalResponseRemoteControl $remote_control): /** * Gets velocity. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseVelocity */ public function getVelocity(): ?SignalResponseVelocity { @@ -837,6 +883,8 @@ public function setVelocity(?SignalResponseVelocity $velocity): self /** * Gets developer_tools. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseDeveloperTools */ public function getDeveloperTools(): ?SignalResponseDeveloperTools { diff --git a/src/Model/ProductsResponseBotd.php b/src/Model/ProductsResponseBotd.php index e1dc0d34..7d8255c1 100644 --- a/src/Model/ProductsResponseBotd.php +++ b/src/Model/ProductsResponseBotd.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\BotdResult */ public function getData(): ?BotdResult { @@ -219,6 +221,8 @@ public function setData(?BotdResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/ProductsResponseIdentification.php b/src/Model/ProductsResponseIdentification.php index aeeb57c0..dfec88dc 100644 --- a/src/Model/ProductsResponseIdentification.php +++ b/src/Model/ProductsResponseIdentification.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductsResponseIdentificationData */ public function getData(): ?ProductsResponseIdentificationData { @@ -219,6 +221,8 @@ public function setData(?ProductsResponseIdentificationData $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\IdentificationError */ public function getError(): ?IdentificationError { diff --git a/src/Model/ProductsResponseIdentificationData.php b/src/Model/ProductsResponseIdentificationData.php index c2ae2e4f..1bf397fc 100644 --- a/src/Model/ProductsResponseIdentificationData.php +++ b/src/Model/ProductsResponseIdentificationData.php @@ -402,6 +402,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -514,6 +516,8 @@ public function setTag(array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -536,6 +540,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence { diff --git a/src/Model/Response.php b/src/Model/Response.php index 93de00cc..2aa4f347 100644 --- a/src/Model/Response.php +++ b/src/Model/Response.php @@ -266,6 +266,8 @@ public function setVisits(array $visits): self /** * Gets last_timestamp. + * + * @return ?int */ public function getLastTimestamp(): ?int { @@ -288,6 +290,8 @@ public function setLastTimestamp(?int $last_timestamp): self /** * Gets pagination_key. + * + * @return ?string */ public function getPaginationKey(): ?string { diff --git a/src/Model/ResponseVisits.php b/src/Model/ResponseVisits.php index 3621a1a5..e3b67f55 100644 --- a/src/Model/ResponseVisits.php +++ b/src/Model/ResponseVisits.php @@ -393,6 +393,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -505,6 +507,8 @@ public function setTag(array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -527,6 +531,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence { diff --git a/src/Model/SignalResponseClonedApp.php b/src/Model/SignalResponseClonedApp.php index 588a2cf2..0edbcaf2 100644 --- a/src/Model/SignalResponseClonedApp.php +++ b/src/Model/SignalResponseClonedApp.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\ClonedAppResult */ public function getData(): ?ClonedAppResult { @@ -219,6 +221,8 @@ public function setData(?ClonedAppResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseDeveloperTools.php b/src/Model/SignalResponseDeveloperTools.php index e65db632..d25d3207 100644 --- a/src/Model/SignalResponseDeveloperTools.php +++ b/src/Model/SignalResponseDeveloperTools.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\DeveloperToolsResult */ public function getData(): ?DeveloperToolsResult { @@ -219,6 +221,8 @@ public function setData(?DeveloperToolsResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseEmulator.php b/src/Model/SignalResponseEmulator.php index 61b0ee07..15d6b196 100644 --- a/src/Model/SignalResponseEmulator.php +++ b/src/Model/SignalResponseEmulator.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\EmulatorResult */ public function getData(): ?EmulatorResult { @@ -219,6 +221,8 @@ public function setData(?EmulatorResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseFactoryReset.php b/src/Model/SignalResponseFactoryReset.php index d61b0132..95f0737a 100644 --- a/src/Model/SignalResponseFactoryReset.php +++ b/src/Model/SignalResponseFactoryReset.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\FactoryResetResult */ public function getData(): ?FactoryResetResult { @@ -219,6 +221,8 @@ public function setData(?FactoryResetResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseFrida.php b/src/Model/SignalResponseFrida.php index 7db7a1f4..86aba169 100644 --- a/src/Model/SignalResponseFrida.php +++ b/src/Model/SignalResponseFrida.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\FridaResult */ public function getData(): ?FridaResult { @@ -219,6 +221,8 @@ public function setData(?FridaResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseHighActivity.php b/src/Model/SignalResponseHighActivity.php index 25998369..9a1e755a 100644 --- a/src/Model/SignalResponseHighActivity.php +++ b/src/Model/SignalResponseHighActivity.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\HighActivityResult */ public function getData(): ?HighActivityResult { @@ -219,6 +221,8 @@ public function setData(?HighActivityResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseIncognito.php b/src/Model/SignalResponseIncognito.php index c7fff6eb..e8e87138 100644 --- a/src/Model/SignalResponseIncognito.php +++ b/src/Model/SignalResponseIncognito.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\IncognitoResult */ public function getData(): ?IncognitoResult { @@ -219,6 +221,8 @@ public function setData(?IncognitoResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\IdentificationError */ public function getError(): ?IdentificationError { diff --git a/src/Model/SignalResponseIpBlocklist.php b/src/Model/SignalResponseIpBlocklist.php index c7936240..00a37d29 100644 --- a/src/Model/SignalResponseIpBlocklist.php +++ b/src/Model/SignalResponseIpBlocklist.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\IpBlockListResult */ public function getData(): ?IpBlockListResult { @@ -219,6 +221,8 @@ public function setData(?IpBlockListResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseIpInfo.php b/src/Model/SignalResponseIpInfo.php index 4314cc08..48e5fa40 100644 --- a/src/Model/SignalResponseIpInfo.php +++ b/src/Model/SignalResponseIpInfo.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResult */ public function getData(): ?IpInfoResult { @@ -219,6 +221,8 @@ public function setData(?IpInfoResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseJailbroken.php b/src/Model/SignalResponseJailbroken.php index 3e61ce07..5d33f2fe 100644 --- a/src/Model/SignalResponseJailbroken.php +++ b/src/Model/SignalResponseJailbroken.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\JailbrokenResult */ public function getData(): ?JailbrokenResult { @@ -219,6 +221,8 @@ public function setData(?JailbrokenResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseLocationSpoofing.php b/src/Model/SignalResponseLocationSpoofing.php index c56ae7ac..aef5b071 100644 --- a/src/Model/SignalResponseLocationSpoofing.php +++ b/src/Model/SignalResponseLocationSpoofing.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\LocationSpoofingResult */ public function getData(): ?LocationSpoofingResult { @@ -219,6 +221,8 @@ public function setData(?LocationSpoofingResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponsePrivacySettings.php b/src/Model/SignalResponsePrivacySettings.php index 24491013..a97c78aa 100644 --- a/src/Model/SignalResponsePrivacySettings.php +++ b/src/Model/SignalResponsePrivacySettings.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\PrivacySettingsResult */ public function getData(): ?PrivacySettingsResult { @@ -219,6 +221,8 @@ public function setData(?PrivacySettingsResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseProxy.php b/src/Model/SignalResponseProxy.php index 9e6b6322..0f354989 100644 --- a/src/Model/SignalResponseProxy.php +++ b/src/Model/SignalResponseProxy.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\ProxyResult */ public function getData(): ?ProxyResult { @@ -219,6 +221,8 @@ public function setData(?ProxyResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseRawDeviceAttributes.php b/src/Model/SignalResponseRawDeviceAttributes.php index fa20abb4..68a20adc 100644 --- a/src/Model/SignalResponseRawDeviceAttributes.php +++ b/src/Model/SignalResponseRawDeviceAttributes.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\RawDeviceAttributesResult */ public function getData(): array { @@ -219,6 +221,8 @@ public function setData(?array $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\IdentificationError */ public function getError(): ?IdentificationError { diff --git a/src/Model/SignalResponseRemoteControl.php b/src/Model/SignalResponseRemoteControl.php index 8fc480f4..afec1f39 100644 --- a/src/Model/SignalResponseRemoteControl.php +++ b/src/Model/SignalResponseRemoteControl.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\RemoteControlResult */ public function getData(): ?RemoteControlResult { @@ -219,6 +221,8 @@ public function setData(?RemoteControlResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseRootApps.php b/src/Model/SignalResponseRootApps.php index 9796070e..d5ed6c79 100644 --- a/src/Model/SignalResponseRootApps.php +++ b/src/Model/SignalResponseRootApps.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\RootAppsResult */ public function getData(): ?RootAppsResult { @@ -219,6 +221,8 @@ public function setData(?RootAppsResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseSuspectScore.php b/src/Model/SignalResponseSuspectScore.php index 3c0e43d4..3614acf0 100644 --- a/src/Model/SignalResponseSuspectScore.php +++ b/src/Model/SignalResponseSuspectScore.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\SuspectScoreResult */ public function getData(): ?SuspectScoreResult { @@ -219,6 +221,8 @@ public function setData(?SuspectScoreResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseTampering.php b/src/Model/SignalResponseTampering.php index e5802690..68c818ea 100644 --- a/src/Model/SignalResponseTampering.php +++ b/src/Model/SignalResponseTampering.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\TamperingResult */ public function getData(): ?TamperingResult { @@ -219,6 +221,8 @@ public function setData(?TamperingResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\IdentificationError */ public function getError(): ?IdentificationError { diff --git a/src/Model/SignalResponseTor.php b/src/Model/SignalResponseTor.php index e1d0a4d0..06ac9768 100644 --- a/src/Model/SignalResponseTor.php +++ b/src/Model/SignalResponseTor.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\TorResult */ public function getData(): ?TorResult { @@ -219,6 +221,8 @@ public function setData(?TorResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseVelocity.php b/src/Model/SignalResponseVelocity.php index 0c717ca2..3ccfbdbe 100644 --- a/src/Model/SignalResponseVelocity.php +++ b/src/Model/SignalResponseVelocity.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\VelocityResult */ public function getData(): ?VelocityResult { @@ -219,6 +221,8 @@ public function setData(?VelocityResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseVirtualMachine.php b/src/Model/SignalResponseVirtualMachine.php index 50f1d4fe..906eedd2 100644 --- a/src/Model/SignalResponseVirtualMachine.php +++ b/src/Model/SignalResponseVirtualMachine.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\VirtualMachineResult */ public function getData(): ?VirtualMachineResult { @@ -219,6 +221,8 @@ public function setData(?VirtualMachineResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/SignalResponseVpn.php b/src/Model/SignalResponseVpn.php index 0f1f63c7..b96d13c5 100644 --- a/src/Model/SignalResponseVpn.php +++ b/src/Model/SignalResponseVpn.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\VpnResult */ public function getData(): ?VpnResult { @@ -219,6 +221,8 @@ public function setData(?VpnResult $data): self /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductError */ public function getError(): ?ProductError { diff --git a/src/Model/Subdivision.php b/src/Model/Subdivision.php index 32997076..0c2835d8 100644 --- a/src/Model/Subdivision.php +++ b/src/Model/Subdivision.php @@ -197,6 +197,8 @@ public function valid(): bool /** * Gets iso_code. + * + * @return ?string */ public function getIsoCode(): ?string { @@ -219,6 +221,8 @@ public function setIsoCode(?string $iso_code): self /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/VelocityIntervalResult.php b/src/Model/VelocityIntervalResult.php index 2f60b5d5..efa97f7d 100644 --- a/src/Model/VelocityIntervalResult.php +++ b/src/Model/VelocityIntervalResult.php @@ -258,6 +258,8 @@ public function set1h(int $_1h): self /** * Gets _24h. + * + * @return ?int */ public function get24h(): ?int { diff --git a/src/Model/VelocityIntervals.php b/src/Model/VelocityIntervals.php index f1cf6697..f2a84395 100644 --- a/src/Model/VelocityIntervals.php +++ b/src/Model/VelocityIntervals.php @@ -191,6 +191,8 @@ public function valid(): bool /** * Gets intervals. + * + * @return ?\Fingerprint\ServerAPI\Model\VelocityIntervalResult */ public function getIntervals(): ?VelocityIntervalResult { diff --git a/src/Model/Visit.php b/src/Model/Visit.php index 4798b030..63ad75b2 100644 --- a/src/Model/Visit.php +++ b/src/Model/Visit.php @@ -390,6 +390,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -502,6 +504,8 @@ public function setTag(?array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -524,6 +528,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence { diff --git a/src/Model/VpnResult.php b/src/Model/VpnResult.php index 0a593da4..2b5651e8 100644 --- a/src/Model/VpnResult.php +++ b/src/Model/VpnResult.php @@ -265,6 +265,8 @@ public function setOriginTimezone(string $origin_timezone): self /** * Gets origin_country. + * + * @return ?string */ public function getOriginCountry(): ?string { diff --git a/src/Model/WebhookVisit.php b/src/Model/WebhookVisit.php index f7872300..585c084a 100644 --- a/src/Model/WebhookVisit.php +++ b/src/Model/WebhookVisit.php @@ -477,6 +477,8 @@ public function setVisitorId(string $visitor_id): self /** * Gets client_referrer. + * + * @return ?string */ public function getClientReferrer(): ?string { @@ -499,6 +501,8 @@ public function setClientReferrer(?string $client_referrer): self /** * Gets user_agent. + * + * @return ?string */ public function getUserAgent(): ?string { @@ -521,6 +525,8 @@ public function setUserAgent(?string $user_agent): self /** * Gets bot. + * + * @return ?\Fingerprint\ServerAPI\Model\BotdDetectionResult */ public function getBot(): ?BotdDetectionResult { @@ -543,6 +549,8 @@ public function setBot(?BotdDetectionResult $bot): self /** * Gets ip_info. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResult */ public function getIpInfo(): ?IpInfoResult { @@ -587,6 +595,8 @@ public function setIncognito(bool $incognito): self /** * Gets root_apps. + * + * @return ?\Fingerprint\ServerAPI\Model\RootAppsResult */ public function getRootApps(): ?RootAppsResult { @@ -609,6 +619,8 @@ public function setRootApps(?RootAppsResult $root_apps): self /** * Gets emulator. + * + * @return ?\Fingerprint\ServerAPI\Model\EmulatorResult */ public function getEmulator(): ?EmulatorResult { @@ -631,6 +643,8 @@ public function setEmulator(?EmulatorResult $emulator): self /** * Gets cloned_app. + * + * @return ?\Fingerprint\ServerAPI\Model\ClonedAppResult */ public function getClonedApp(): ?ClonedAppResult { @@ -653,6 +667,8 @@ public function setClonedApp(?ClonedAppResult $cloned_app): self /** * Gets factory_reset. + * + * @return ?\Fingerprint\ServerAPI\Model\FactoryResetResult */ public function getFactoryReset(): ?FactoryResetResult { @@ -675,6 +691,8 @@ public function setFactoryReset(?FactoryResetResult $factory_reset): self /** * Gets jailbroken. + * + * @return ?\Fingerprint\ServerAPI\Model\JailbrokenResult */ public function getJailbroken(): ?JailbrokenResult { @@ -697,6 +715,8 @@ public function setJailbroken(?JailbrokenResult $jailbroken): self /** * Gets frida. + * + * @return ?\Fingerprint\ServerAPI\Model\FridaResult */ public function getFrida(): ?FridaResult { @@ -719,6 +739,8 @@ public function setFrida(?FridaResult $frida): self /** * Gets ip_blocklist. + * + * @return ?\Fingerprint\ServerAPI\Model\IpBlockListResult */ public function getIpBlocklist(): ?IpBlockListResult { @@ -741,6 +763,8 @@ public function setIpBlocklist(?IpBlockListResult $ip_blocklist): self /** * Gets tor. + * + * @return ?\Fingerprint\ServerAPI\Model\TorResult */ public function getTor(): ?TorResult { @@ -763,6 +787,8 @@ public function setTor(?TorResult $tor): self /** * Gets privacy_settings. + * + * @return ?\Fingerprint\ServerAPI\Model\PrivacySettingsResult */ public function getPrivacySettings(): ?PrivacySettingsResult { @@ -785,6 +811,8 @@ public function setPrivacySettings(?PrivacySettingsResult $privacy_settings): se /** * Gets virtual_machine. + * + * @return ?\Fingerprint\ServerAPI\Model\VirtualMachineResult */ public function getVirtualMachine(): ?VirtualMachineResult { @@ -807,6 +835,8 @@ public function setVirtualMachine(?VirtualMachineResult $virtual_machine): self /** * Gets vpn. + * + * @return ?\Fingerprint\ServerAPI\Model\VpnResult */ public function getVpn(): ?VpnResult { @@ -829,6 +859,8 @@ public function setVpn(?VpnResult $vpn): self /** * Gets proxy. + * + * @return ?\Fingerprint\ServerAPI\Model\ProxyResult */ public function getProxy(): ?ProxyResult { @@ -851,6 +883,8 @@ public function setProxy(?ProxyResult $proxy): self /** * Gets tampering. + * + * @return ?\Fingerprint\ServerAPI\Model\TamperingResult */ public function getTampering(): ?TamperingResult { @@ -873,6 +907,8 @@ public function setTampering(?TamperingResult $tampering): self /** * Gets raw_device_attributes. + * + * @return ?\Fingerprint\ServerAPI\Model\RawDeviceAttributesResult */ public function getRawDeviceAttributes(): ?RawDeviceAttributesResult { @@ -895,6 +931,8 @@ public function setRawDeviceAttributes(?RawDeviceAttributesResult $raw_device_at /** * Gets high_activity. + * + * @return ?\Fingerprint\ServerAPI\Model\HighActivityResult */ public function getHighActivity(): ?HighActivityResult { @@ -917,6 +955,8 @@ public function setHighActivity(?HighActivityResult $high_activity): self /** * Gets location_spoofing. + * + * @return ?\Fingerprint\ServerAPI\Model\LocationSpoofingResult */ public function getLocationSpoofing(): ?LocationSpoofingResult { @@ -939,6 +979,8 @@ public function setLocationSpoofing(?LocationSpoofingResult $location_spoofing): /** * Gets suspect_score. + * + * @return ?\Fingerprint\ServerAPI\Model\SuspectScoreResult */ public function getSuspectScore(): ?SuspectScoreResult { @@ -961,6 +1003,8 @@ public function setSuspectScore(?SuspectScoreResult $suspect_score): self /** * Gets remote_control. + * + * @return ?\Fingerprint\ServerAPI\Model\RemoteControlResult */ public function getRemoteControl(): ?RemoteControlResult { @@ -983,6 +1027,8 @@ public function setRemoteControl(?RemoteControlResult $remote_control): self /** * Gets velocity. + * + * @return ?\Fingerprint\ServerAPI\Model\VelocityResult */ public function getVelocity(): ?VelocityResult { @@ -1005,6 +1051,8 @@ public function setVelocity(?VelocityResult $velocity): self /** * Gets developer_tools. + * + * @return ?\Fingerprint\ServerAPI\Model\DeveloperToolsResult */ public function getDeveloperTools(): ?DeveloperToolsResult { @@ -1093,6 +1141,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -1205,6 +1255,8 @@ public function setTag(?array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -1227,6 +1279,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence {