From 99011b736a2782fc50f488d5e83d489540a860fb Mon Sep 17 00:00:00 2001 From: Orkun Date: Wed, 4 Sep 2024 15:10:54 +0300 Subject: [PATCH] fix: php-cs-fixer keep nullable return annotations --- .php-cs-fixer.php | 6 ++ scripts/generate.sh | 8 +++ src/Api/FingerprintApi.php | 4 +- src/Configuration.php | 9 ++- src/Model/ASN.php | 4 ++ src/Model/BotdDetectionResult.php | 4 ++ src/Model/BotdResult.php | 4 ++ src/Model/BrowserDetails.php | 4 ++ src/Model/ClonedAppResult.php | 2 + src/Model/Common403ErrorResponse.php | 2 + src/Model/Confidence.php | 4 ++ src/Model/DataCenter.php | 4 ++ src/Model/DeprecatedIPLocation.php | 14 +++++ src/Model/DeprecatedIPLocationCity.php | 4 ++ src/Model/DeveloperToolsResult.php | 2 + src/Model/EmulatorResult.php | 2 + src/Model/ErrorCommon403Response.php | 4 ++ src/Model/ErrorCommon429Response.php | 4 ++ src/Model/ErrorCommon429ResponseError.php | 2 + src/Model/ErrorEvent404Response.php | 4 ++ src/Model/ErrorEvent404ResponseError.php | 2 + src/Model/ErrorUpdateEvent400Response.php | 4 ++ .../ErrorUpdateEvent400ResponseError.php | 2 + src/Model/ErrorUpdateEvent409Response.php | 4 ++ .../ErrorUpdateEvent409ResponseError.php | 2 + src/Model/ErrorVisitor400Response.php | 4 ++ src/Model/ErrorVisitor400ResponseError.php | 2 + src/Model/ErrorVisitor404Response.php | 4 ++ src/Model/ErrorVisitor404ResponseError.php | 2 + src/Model/ErrorVisits403.php | 2 + src/Model/EventResponse.php | 4 ++ src/Model/EventUpdateRequest.php | 8 +++ src/Model/FactoryResetResult.php | 2 + src/Model/FridaResult.php | 2 + src/Model/HighActivityResult.php | 4 ++ src/Model/IPLocation.php | 14 +++++ src/Model/IPLocationCity.php | 4 ++ src/Model/IdentificationError.php | 2 + src/Model/IncognitoResult.php | 2 + src/Model/IpBlockListResult.php | 2 + src/Model/IpBlockListResultDetails.php | 2 + src/Model/IpInfoResult.php | 6 ++ src/Model/IpInfoResultV4.php | 6 ++ src/Model/IpInfoResultV6.php | 6 ++ src/Model/JailbrokenResult.php | 2 + src/Model/Location.php | 2 + src/Model/LocationSpoofingResult.php | 2 + src/Model/PrivacySettingsResult.php | 2 + src/Model/ProductError.php | 2 + src/Model/ProductsResponse.php | 50 +++++++++++++++++ src/Model/ProductsResponseBotd.php | 6 ++ src/Model/ProductsResponseIdentification.php | 6 ++ .../ProductsResponseIdentificationData.php | 8 +++ src/Model/ProxyResult.php | 2 + src/Model/RawDeviceAttributesResult.php | 2 + src/Model/RemoteControlResult.php | 2 + src/Model/Response.php | 6 ++ src/Model/ResponseVisits.php | 8 +++ src/Model/RootAppsResult.php | 2 + src/Model/SeenAt.php | 2 + src/Model/SignalResponseClonedApp.php | 6 ++ src/Model/SignalResponseDeveloperTools.php | 6 ++ src/Model/SignalResponseEmulator.php | 6 ++ src/Model/SignalResponseFactoryReset.php | 6 ++ src/Model/SignalResponseFrida.php | 6 ++ src/Model/SignalResponseHighActivity.php | 6 ++ src/Model/SignalResponseIncognito.php | 6 ++ src/Model/SignalResponseIpBlocklist.php | 6 ++ src/Model/SignalResponseIpInfo.php | 6 ++ src/Model/SignalResponseJailbroken.php | 6 ++ src/Model/SignalResponseLocationSpoofing.php | 6 ++ src/Model/SignalResponsePrivacySettings.php | 6 ++ src/Model/SignalResponseProxy.php | 6 ++ .../SignalResponseRawDeviceAttributes.php | 6 ++ src/Model/SignalResponseRemoteControl.php | 6 ++ src/Model/SignalResponseRootApps.php | 6 ++ src/Model/SignalResponseSuspectScore.php | 6 ++ src/Model/SignalResponseTampering.php | 6 ++ src/Model/SignalResponseTor.php | 6 ++ src/Model/SignalResponseVelocity.php | 6 ++ src/Model/SignalResponseVirtualMachine.php | 6 ++ src/Model/SignalResponseVpn.php | 6 ++ src/Model/Subdivision.php | 6 ++ src/Model/SuspectScoreResult.php | 2 + src/Model/TamperingResult.php | 2 + src/Model/TooManyRequestsResponse.php | 2 + src/Model/TorResult.php | 2 + src/Model/VelocityIntervalResult.php | 4 ++ src/Model/VelocityIntervals.php | 4 ++ src/Model/VelocityResult.php | 2 + src/Model/VirtualMachineResult.php | 2 + src/Model/Visit.php | 8 +++ src/Model/VpnResult.php | 4 ++ src/Model/VpnResultMethods.php | 2 + src/Model/WebhookVisit.php | 56 +++++++++++++++++++ src/ObjectSerializer.php | 6 +- 96 files changed, 514 insertions(+), 7 deletions(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 59505d88..e7b05d41 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -14,6 +14,12 @@ 'operators' => ['=>' => null], ], 'multiline_whitespace_before_semicolons' => false, + 'phpdoc_trim' => false, + 'phpdoc_no_empty_return' => false, + 'phpdoc_types_order' => [ + 'null_adjustment' => 'always_last', + 'sort_algorithm' => 'none', + ], ]) ->setFinder( PhpCsFixer\Finder::create() diff --git a/scripts/generate.sh b/scripts/generate.sh index 2ca7bd38..291233e1 100755 --- a/scripts/generate.sh +++ b/scripts/generate.sh @@ -40,6 +40,14 @@ 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 +if [ ! -f .php-cs-fixer.php ]; then + echo ".php-cs-fixer.php configuration file not found!" + exit 1 +fi + +echo "Using .php-cs-fixer.php configuration:" +cat .php-cs-fixer.php + 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/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index d0aef052..68673377 100644 --- a/src/Api/FingerprintApi.php +++ b/src/Api/FingerprintApi.php @@ -259,7 +259,7 @@ function ($e) { * * @param string $request_id The unique [identifier](https://dev.fingerprint.com/docs/js-agent#requestid) of each identification request. (required) * - * @return array{ null|\Fingerprint\ServerAPI\Model\EventResponse, \Psr\Http\Message\ResponseInterface } + * @return array{ \Fingerprint\ServerAPI\Model\EventResponse|null, \Psr\Http\Message\ResponseInterface } * * @throws \InvalidArgumentException * @throws SerializationException @@ -435,7 +435,7 @@ function ($e) { * @param string $pagination_key Use `paginationKey` to get the next page of results. When more results are available (e.g., you requested 200 results using `limit` parameter, but a total of 600 results are available), the `paginationKey` top-level attribute is added to the response. The key corresponds to the `requestId` of the last returned event. In the following request, use that value in the `paginationKey` parameter to get the next page of results: 1. First request, returning most recent 200 events: `GET api-base-url/visitors/:visitorId?limit=200` 2. Use `response.paginationKey` to get the next page of results: `GET api-base-url/visitors/:visitorId?limit=200&paginationKey=1683900801733.Ogvu1j` Pagination happens during scanning and before filtering, so you can get less visits than the `limit` you specified with more available on the next page. When there are no more results available for scanning, the `paginationKey` attribute is not returned. (optional) * @param int $before ⚠️ Deprecated pagination method, please use `paginationKey` instead. Timestamp (in milliseconds since epoch) used to paginate results. (optional) * - * @return array{ null|\Fingerprint\ServerAPI\Model\Response, \Psr\Http\Message\ResponseInterface } + * @return array{ \Fingerprint\ServerAPI\Model\Response|null, \Psr\Http\Message\ResponseInterface } * * @throws \InvalidArgumentException * @throws SerializationException diff --git a/src/Configuration.php b/src/Configuration.php index ce17f4b7..62f7d065 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -124,7 +124,7 @@ public function setApiKey(string $apiKeyIdentifier, string $key): self * * @param string $apiKeyIdentifier API key identifier (authentication scheme) * - * @return null|string API key or token + * @return string|null API key or token */ public function getApiKey(string $apiKeyIdentifier): ?string { @@ -150,6 +150,7 @@ public function setApiKeyPrefix(string $apiKeyIdentifier, string $prefix): self * Gets API key prefix. * * @param string $apiKeyIdentifier API key identifier (authentication scheme) + * */ public function getApiKeyPrefix(string $apiKeyIdentifier): ?string { @@ -329,6 +330,7 @@ public function setDebug(bool $debug): self /** * Gets the debug flag. + * */ public function getDebug(): bool { @@ -351,6 +353,7 @@ public function setDebugFile(string $debugFile): self /** * Gets the debug file. + * */ public function getDebugFile(): string { @@ -383,6 +386,7 @@ public function getTempFolderPath(): string /** * Gets the default configuration instance, with apiKey and host params. + * */ public static function getDefaultConfiguration(?string $api_key = null, ?string $region = self::REGION_GLOBAL): self { @@ -400,6 +404,7 @@ public static function getDefaultConfiguration(?string $api_key = null, ?string * Sets the detault configuration instance. * * @param Configuration $config An instance of the Configuration Object + * */ public static function setDefaultConfiguration(Configuration $config): void { @@ -428,7 +433,7 @@ public static function toDebugReport(): string * * @param string $apiKeyIdentifier name of apikey * - * @return null|string API key with the prefix + * @return string|null API key with the prefix */ public function getApiKeyWithPrefix(string $apiKeyIdentifier): ?string { diff --git a/src/Model/ASN.php b/src/Model/ASN.php index 5bffc27b..513d1637 100644 --- a/src/Model/ASN.php +++ b/src/Model/ASN.php @@ -42,6 +42,7 @@ class ASN implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ASN'; @@ -118,6 +119,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -256,6 +258,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..2bb4185d 100644 --- a/src/Model/BotdDetectionResult.php +++ b/src/Model/BotdDetectionResult.php @@ -48,6 +48,7 @@ class BotdDetectionResult implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'BotdDetectionResult'; @@ -118,6 +119,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -260,6 +262,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..5759f744 100644 --- a/src/Model/BotdResult.php +++ b/src/Model/BotdResult.php @@ -44,6 +44,7 @@ class BotdResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'BotdResult'; @@ -144,6 +145,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -360,6 +362,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..dfaf11b5 100644 --- a/src/Model/BrowserDetails.php +++ b/src/Model/BrowserDetails.php @@ -42,6 +42,7 @@ class BrowserDetails implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'BrowserDetails'; @@ -148,6 +149,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -411,6 +413,8 @@ public function setUserAgent(string $user_agent): self /** * Gets bot_probability. + * + * @return ?int */ public function getBotProbability(): ?int { diff --git a/src/Model/ClonedAppResult.php b/src/Model/ClonedAppResult.php index 61fd7c2d..bb6058c3 100644 --- a/src/Model/ClonedAppResult.php +++ b/src/Model/ClonedAppResult.php @@ -42,6 +42,7 @@ class ClonedAppResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ClonedAppResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/Common403ErrorResponse.php b/src/Model/Common403ErrorResponse.php index f8e5fd06..08fccec6 100644 --- a/src/Model/Common403ErrorResponse.php +++ b/src/Model/Common403ErrorResponse.php @@ -48,6 +48,7 @@ class Common403ErrorResponse implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'Common403ErrorResponse'; @@ -118,6 +119,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/Confidence.php b/src/Model/Confidence.php index 4ecbc53a..d0e6b0d5 100644 --- a/src/Model/Confidence.php +++ b/src/Model/Confidence.php @@ -42,6 +42,7 @@ class Confidence implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'Confidence'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -225,6 +227,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..be8676e8 100644 --- a/src/Model/DataCenter.php +++ b/src/Model/DataCenter.php @@ -42,6 +42,7 @@ class DataCenter implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'DataCenter'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -225,6 +227,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..78bef7a4 100644 --- a/src/Model/DeprecatedIPLocation.php +++ b/src/Model/DeprecatedIPLocation.php @@ -44,6 +44,7 @@ class DeprecatedIPLocation implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'DeprecatedIPLocation'; @@ -156,6 +157,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -241,6 +243,8 @@ public function valid(): bool /** * Gets accuracy_radius. + * + * @return ?int */ public function getAccuracyRadius(): ?int { @@ -311,6 +315,8 @@ public function setLongitude(?float $longitude): self /** * Gets postal_code. + * + * @return ?string */ public function getPostalCode(): ?string { @@ -333,6 +339,8 @@ public function setPostalCode(?string $postal_code): self /** * Gets timezone. + * + * @return ?string */ public function getTimezone(): ?string { @@ -355,6 +363,8 @@ public function setTimezone(?string $timezone): self /** * Gets city. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocationCity */ public function getCity(): ?DeprecatedIPLocationCity { @@ -377,6 +387,8 @@ public function setCity(?DeprecatedIPLocationCity $city): self /** * Gets country. + * + * @return ?\Fingerprint\ServerAPI\Model\Location */ public function getCountry(): ?Location { @@ -399,6 +411,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..00eb95da 100644 --- a/src/Model/DeprecatedIPLocationCity.php +++ b/src/Model/DeprecatedIPLocationCity.php @@ -42,6 +42,7 @@ class DeprecatedIPLocationCity implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'DeprecatedIPLocationCity'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/DeveloperToolsResult.php b/src/Model/DeveloperToolsResult.php index 2047bf72..9f16ce60 100644 --- a/src/Model/DeveloperToolsResult.php +++ b/src/Model/DeveloperToolsResult.php @@ -42,6 +42,7 @@ class DeveloperToolsResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'DeveloperToolsResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/EmulatorResult.php b/src/Model/EmulatorResult.php index 0a4398fd..2ff045a9 100644 --- a/src/Model/EmulatorResult.php +++ b/src/Model/EmulatorResult.php @@ -42,6 +42,7 @@ class EmulatorResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'EmulatorResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorCommon403Response.php b/src/Model/ErrorCommon403Response.php index 72801e89..91a5334a 100644 --- a/src/Model/ErrorCommon403Response.php +++ b/src/Model/ErrorCommon403Response.php @@ -42,6 +42,7 @@ class ErrorCommon403Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorCommon403Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,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..7a5100d9 100644 --- a/src/Model/ErrorCommon429Response.php +++ b/src/Model/ErrorCommon429Response.php @@ -42,6 +42,7 @@ class ErrorCommon429Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorCommon429Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorCommon429ResponseError */ public function getError(): ?ErrorCommon429ResponseError { diff --git a/src/Model/ErrorCommon429ResponseError.php b/src/Model/ErrorCommon429ResponseError.php index f214c931..7e930734 100644 --- a/src/Model/ErrorCommon429ResponseError.php +++ b/src/Model/ErrorCommon429ResponseError.php @@ -44,6 +44,7 @@ class ErrorCommon429ResponseError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorCommon429Response_error'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorEvent404Response.php b/src/Model/ErrorEvent404Response.php index 2142983c..62b9aba2 100644 --- a/src/Model/ErrorEvent404Response.php +++ b/src/Model/ErrorEvent404Response.php @@ -42,6 +42,7 @@ class ErrorEvent404Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorEvent404Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorEvent404ResponseError */ public function getError(): ?ErrorEvent404ResponseError { diff --git a/src/Model/ErrorEvent404ResponseError.php b/src/Model/ErrorEvent404ResponseError.php index 0337f0bd..1e8e08ff 100644 --- a/src/Model/ErrorEvent404ResponseError.php +++ b/src/Model/ErrorEvent404ResponseError.php @@ -44,6 +44,7 @@ class ErrorEvent404ResponseError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorEvent404ResponseError'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorUpdateEvent400Response.php b/src/Model/ErrorUpdateEvent400Response.php index f2157ca0..0f5f502a 100644 --- a/src/Model/ErrorUpdateEvent400Response.php +++ b/src/Model/ErrorUpdateEvent400Response.php @@ -42,6 +42,7 @@ class ErrorUpdateEvent400Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorUpdateEvent400Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorUpdateEvent400ResponseError */ public function getError(): ?ErrorUpdateEvent400ResponseError { diff --git a/src/Model/ErrorUpdateEvent400ResponseError.php b/src/Model/ErrorUpdateEvent400ResponseError.php index ec5eedb8..1a846943 100644 --- a/src/Model/ErrorUpdateEvent400ResponseError.php +++ b/src/Model/ErrorUpdateEvent400ResponseError.php @@ -45,6 +45,7 @@ class ErrorUpdateEvent400ResponseError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorUpdateEvent400ResponseError'; @@ -115,6 +116,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorUpdateEvent409Response.php b/src/Model/ErrorUpdateEvent409Response.php index 3e1bed4d..f2b60816 100644 --- a/src/Model/ErrorUpdateEvent409Response.php +++ b/src/Model/ErrorUpdateEvent409Response.php @@ -42,6 +42,7 @@ class ErrorUpdateEvent409Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorUpdateEvent409Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorUpdateEvent409ResponseError */ public function getError(): ?ErrorUpdateEvent409ResponseError { diff --git a/src/Model/ErrorUpdateEvent409ResponseError.php b/src/Model/ErrorUpdateEvent409ResponseError.php index 7104bb91..d5e59471 100644 --- a/src/Model/ErrorUpdateEvent409ResponseError.php +++ b/src/Model/ErrorUpdateEvent409ResponseError.php @@ -44,6 +44,7 @@ class ErrorUpdateEvent409ResponseError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorUpdateEvent409ResponseError'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorVisitor400Response.php b/src/Model/ErrorVisitor400Response.php index b8069300..619453b2 100644 --- a/src/Model/ErrorVisitor400Response.php +++ b/src/Model/ErrorVisitor400Response.php @@ -42,6 +42,7 @@ class ErrorVisitor400Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorVisitor400Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorVisitor400ResponseError */ public function getError(): ?ErrorVisitor400ResponseError { diff --git a/src/Model/ErrorVisitor400ResponseError.php b/src/Model/ErrorVisitor400ResponseError.php index f3a7511d..75686a3f 100644 --- a/src/Model/ErrorVisitor400ResponseError.php +++ b/src/Model/ErrorVisitor400ResponseError.php @@ -44,6 +44,7 @@ class ErrorVisitor400ResponseError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorVisitor400Response_error'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorVisitor404Response.php b/src/Model/ErrorVisitor404Response.php index 844c224b..cb60f246 100644 --- a/src/Model/ErrorVisitor404Response.php +++ b/src/Model/ErrorVisitor404Response.php @@ -42,6 +42,7 @@ class ErrorVisitor404Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorVisitor404Response'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets error. + * + * @return ?\Fingerprint\ServerAPI\Model\ErrorVisitor404ResponseError */ public function getError(): ?ErrorVisitor404ResponseError { diff --git a/src/Model/ErrorVisitor404ResponseError.php b/src/Model/ErrorVisitor404ResponseError.php index 6365d384..5180dfb1 100644 --- a/src/Model/ErrorVisitor404ResponseError.php +++ b/src/Model/ErrorVisitor404ResponseError.php @@ -44,6 +44,7 @@ class ErrorVisitor404ResponseError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorVisitor404ResponseError'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ErrorVisits403.php b/src/Model/ErrorVisits403.php index 297998f3..d2791a9d 100644 --- a/src/Model/ErrorVisits403.php +++ b/src/Model/ErrorVisits403.php @@ -42,6 +42,7 @@ class ErrorVisits403 implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ErrorVisits403'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/EventResponse.php b/src/Model/EventResponse.php index 4cf0bcb7..677ddc1e 100644 --- a/src/Model/EventResponse.php +++ b/src/Model/EventResponse.php @@ -44,6 +44,7 @@ class EventResponse implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'EventResponse'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -227,6 +229,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..48a75da9 100644 --- a/src/Model/EventUpdateRequest.php +++ b/src/Model/EventUpdateRequest.php @@ -42,6 +42,7 @@ class EventUpdateRequest implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'EventUpdateRequest'; @@ -118,6 +119,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -203,6 +205,8 @@ public function valid(): bool /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -225,6 +229,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets tag. + * + * @return ?object */ public function getTag(): ?object { @@ -247,6 +253,8 @@ public function setTag(?object $tag): self /** * Gets suspect. + * + * @return ?bool */ public function getSuspect(): ?bool { diff --git a/src/Model/FactoryResetResult.php b/src/Model/FactoryResetResult.php index 8d6872fa..1ac00a95 100644 --- a/src/Model/FactoryResetResult.php +++ b/src/Model/FactoryResetResult.php @@ -42,6 +42,7 @@ class FactoryResetResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'FactoryResetResult'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/FridaResult.php b/src/Model/FridaResult.php index ad511bad..e8b4d788 100644 --- a/src/Model/FridaResult.php +++ b/src/Model/FridaResult.php @@ -42,6 +42,7 @@ class FridaResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'FridaResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/HighActivityResult.php b/src/Model/HighActivityResult.php index ab323cad..eb1b6655 100644 --- a/src/Model/HighActivityResult.php +++ b/src/Model/HighActivityResult.php @@ -42,6 +42,7 @@ class HighActivityResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'HighActivityResult'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -225,6 +227,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..0d860886 100644 --- a/src/Model/IPLocation.php +++ b/src/Model/IPLocation.php @@ -42,6 +42,7 @@ class IPLocation implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IPLocation'; @@ -154,6 +155,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -239,6 +241,8 @@ public function valid(): bool /** * Gets accuracy_radius. + * + * @return ?int */ public function getAccuracyRadius(): ?int { @@ -309,6 +313,8 @@ public function setLongitude(?float $longitude): self /** * Gets postal_code. + * + * @return ?string */ public function getPostalCode(): ?string { @@ -331,6 +337,8 @@ public function setPostalCode(?string $postal_code): self /** * Gets timezone. + * + * @return ?string */ public function getTimezone(): ?string { @@ -353,6 +361,8 @@ public function setTimezone(?string $timezone): self /** * Gets city. + * + * @return ?\Fingerprint\ServerAPI\Model\IPLocationCity */ public function getCity(): ?IPLocationCity { @@ -375,6 +385,8 @@ public function setCity(?IPLocationCity $city): self /** * Gets country. + * + * @return ?\Fingerprint\ServerAPI\Model\Location */ public function getCountry(): ?Location { @@ -397,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/IPLocationCity.php b/src/Model/IPLocationCity.php index 5e066dcb..3daa33ad 100644 --- a/src/Model/IPLocationCity.php +++ b/src/Model/IPLocationCity.php @@ -42,6 +42,7 @@ class IPLocationCity implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IPLocationCity'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/IdentificationError.php b/src/Model/IdentificationError.php index c8890cc4..690dc8f1 100644 --- a/src/Model/IdentificationError.php +++ b/src/Model/IdentificationError.php @@ -45,6 +45,7 @@ class IdentificationError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IdentificationError'; @@ -115,6 +116,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/IncognitoResult.php b/src/Model/IncognitoResult.php index 6299cc93..f5920155 100644 --- a/src/Model/IncognitoResult.php +++ b/src/Model/IncognitoResult.php @@ -42,6 +42,7 @@ class IncognitoResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IncognitoResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/IpBlockListResult.php b/src/Model/IpBlockListResult.php index c6131829..d57b0ce4 100644 --- a/src/Model/IpBlockListResult.php +++ b/src/Model/IpBlockListResult.php @@ -42,6 +42,7 @@ class IpBlockListResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IpBlockListResult'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/IpBlockListResultDetails.php b/src/Model/IpBlockListResultDetails.php index 0695fbc1..901937e8 100644 --- a/src/Model/IpBlockListResultDetails.php +++ b/src/Model/IpBlockListResultDetails.php @@ -42,6 +42,7 @@ class IpBlockListResultDetails implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IpBlockListResult_details'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/IpInfoResult.php b/src/Model/IpInfoResult.php index f414d4fb..53c4609e 100644 --- a/src/Model/IpInfoResult.php +++ b/src/Model/IpInfoResult.php @@ -44,6 +44,7 @@ class IpInfoResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IpInfoResult'; @@ -114,6 +115,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -199,6 +201,8 @@ public function valid(): bool /** * Gets v4. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResultV4 */ public function getV4(): ?IpInfoResultV4 { @@ -221,6 +225,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..c23b605e 100644 --- a/src/Model/IpInfoResultV4.php +++ b/src/Model/IpInfoResultV4.php @@ -42,6 +42,7 @@ class IpInfoResultV4 implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IpInfoResult_v4'; @@ -124,6 +125,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -262,6 +264,8 @@ public function setGeolocation(IPLocation $geolocation): self /** * Gets asn. + * + * @return ?\Fingerprint\ServerAPI\Model\ASN */ public function getAsn(): ?ASN { @@ -284,6 +288,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..9ea20b53 100644 --- a/src/Model/IpInfoResultV6.php +++ b/src/Model/IpInfoResultV6.php @@ -42,6 +42,7 @@ class IpInfoResultV6 implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'IpInfoResult_v6'; @@ -124,6 +125,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -262,6 +264,8 @@ public function setGeolocation(IPLocation $geolocation): self /** * Gets asn. + * + * @return ?\Fingerprint\ServerAPI\Model\ASN */ public function getAsn(): ?ASN { @@ -284,6 +288,8 @@ public function setAsn(?ASN $asn): self /** * Gets datacenter. + * + * @return ?\Fingerprint\ServerAPI\Model\DataCenter */ public function getDatacenter(): ?DataCenter { diff --git a/src/Model/JailbrokenResult.php b/src/Model/JailbrokenResult.php index fa94ca4d..09dde5a3 100644 --- a/src/Model/JailbrokenResult.php +++ b/src/Model/JailbrokenResult.php @@ -42,6 +42,7 @@ class JailbrokenResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'JailbrokenResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/Location.php b/src/Model/Location.php index 10af00e7..72c7a482 100644 --- a/src/Model/Location.php +++ b/src/Model/Location.php @@ -42,6 +42,7 @@ class Location implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'Location'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/LocationSpoofingResult.php b/src/Model/LocationSpoofingResult.php index fb7e697c..3e9ae815 100644 --- a/src/Model/LocationSpoofingResult.php +++ b/src/Model/LocationSpoofingResult.php @@ -42,6 +42,7 @@ class LocationSpoofingResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'LocationSpoofingResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/PrivacySettingsResult.php b/src/Model/PrivacySettingsResult.php index 28bcb9a6..efe0093d 100644 --- a/src/Model/PrivacySettingsResult.php +++ b/src/Model/PrivacySettingsResult.php @@ -42,6 +42,7 @@ class PrivacySettingsResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'PrivacySettingsResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ProductError.php b/src/Model/ProductError.php index 5a0879e9..36cc5c1e 100644 --- a/src/Model/ProductError.php +++ b/src/Model/ProductError.php @@ -45,6 +45,7 @@ class ProductError implements ModelInterface, \ArrayAccess /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ProductError'; @@ -115,6 +116,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/ProductsResponse.php b/src/Model/ProductsResponse.php index 684f78fc..3a7c6f37 100644 --- a/src/Model/ProductsResponse.php +++ b/src/Model/ProductsResponse.php @@ -44,6 +44,7 @@ class ProductsResponse implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ProductsResponse'; @@ -246,6 +247,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -331,6 +333,8 @@ public function valid(): bool /** * Gets identification. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductsResponseIdentification */ public function getIdentification(): ?ProductsResponseIdentification { @@ -353,6 +357,8 @@ public function setIdentification(?ProductsResponseIdentification $identificatio /** * Gets botd. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductsResponseBotd */ public function getBotd(): ?ProductsResponseBotd { @@ -375,6 +381,8 @@ public function setBotd(?ProductsResponseBotd $botd): self /** * Gets ip_info. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseIpInfo */ public function getIpInfo(): ?SignalResponseIpInfo { @@ -397,6 +405,8 @@ public function setIpInfo(?SignalResponseIpInfo $ip_info): self /** * Gets incognito. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseIncognito */ public function getIncognito(): ?SignalResponseIncognito { @@ -419,6 +429,8 @@ public function setIncognito(?SignalResponseIncognito $incognito): self /** * Gets root_apps. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseRootApps */ public function getRootApps(): ?SignalResponseRootApps { @@ -441,6 +453,8 @@ public function setRootApps(?SignalResponseRootApps $root_apps): self /** * Gets emulator. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseEmulator */ public function getEmulator(): ?SignalResponseEmulator { @@ -463,6 +477,8 @@ public function setEmulator(?SignalResponseEmulator $emulator): self /** * Gets cloned_app. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseClonedApp */ public function getClonedApp(): ?SignalResponseClonedApp { @@ -485,6 +501,8 @@ public function setClonedApp(?SignalResponseClonedApp $cloned_app): self /** * Gets factory_reset. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseFactoryReset */ public function getFactoryReset(): ?SignalResponseFactoryReset { @@ -507,6 +525,8 @@ public function setFactoryReset(?SignalResponseFactoryReset $factory_reset): sel /** * Gets jailbroken. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseJailbroken */ public function getJailbroken(): ?SignalResponseJailbroken { @@ -529,6 +549,8 @@ public function setJailbroken(?SignalResponseJailbroken $jailbroken): self /** * Gets frida. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseFrida */ public function getFrida(): ?SignalResponseFrida { @@ -551,6 +573,8 @@ public function setFrida(?SignalResponseFrida $frida): self /** * Gets ip_blocklist. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseIpBlocklist */ public function getIpBlocklist(): ?SignalResponseIpBlocklist { @@ -573,6 +597,8 @@ public function setIpBlocklist(?SignalResponseIpBlocklist $ip_blocklist): self /** * Gets tor. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseTor */ public function getTor(): ?SignalResponseTor { @@ -595,6 +621,8 @@ public function setTor(?SignalResponseTor $tor): self /** * Gets privacy_settings. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponsePrivacySettings */ public function getPrivacySettings(): ?SignalResponsePrivacySettings { @@ -617,6 +645,8 @@ public function setPrivacySettings(?SignalResponsePrivacySettings $privacy_setti /** * Gets virtual_machine. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseVirtualMachine */ public function getVirtualMachine(): ?SignalResponseVirtualMachine { @@ -639,6 +669,8 @@ public function setVirtualMachine(?SignalResponseVirtualMachine $virtual_machine /** * Gets vpn. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseVpn */ public function getVpn(): ?SignalResponseVpn { @@ -661,6 +693,8 @@ public function setVpn(?SignalResponseVpn $vpn): self /** * Gets proxy. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseProxy */ public function getProxy(): ?SignalResponseProxy { @@ -683,6 +717,8 @@ public function setProxy(?SignalResponseProxy $proxy): self /** * Gets tampering. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseTampering */ public function getTampering(): ?SignalResponseTampering { @@ -705,6 +741,8 @@ public function setTampering(?SignalResponseTampering $tampering): self /** * Gets high_activity. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseHighActivity */ public function getHighActivity(): ?SignalResponseHighActivity { @@ -727,6 +765,8 @@ public function setHighActivity(?SignalResponseHighActivity $high_activity): sel /** * Gets location_spoofing. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseLocationSpoofing */ public function getLocationSpoofing(): ?SignalResponseLocationSpoofing { @@ -749,6 +789,8 @@ public function setLocationSpoofing(?SignalResponseLocationSpoofing $location_sp /** * Gets suspect_score. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseSuspectScore */ public function getSuspectScore(): ?SignalResponseSuspectScore { @@ -771,6 +813,8 @@ public function setSuspectScore(?SignalResponseSuspectScore $suspect_score): sel /** * Gets raw_device_attributes. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseRawDeviceAttributes */ public function getRawDeviceAttributes(): ?SignalResponseRawDeviceAttributes { @@ -793,6 +837,8 @@ public function setRawDeviceAttributes(?SignalResponseRawDeviceAttributes $raw_d /** * Gets remote_control. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseRemoteControl */ public function getRemoteControl(): ?SignalResponseRemoteControl { @@ -815,6 +861,8 @@ public function setRemoteControl(?SignalResponseRemoteControl $remote_control): /** * Gets velocity. + * + * @return ?\Fingerprint\ServerAPI\Model\SignalResponseVelocity */ public function getVelocity(): ?SignalResponseVelocity { @@ -837,6 +885,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..9f1c8923 100644 --- a/src/Model/ProductsResponseBotd.php +++ b/src/Model/ProductsResponseBotd.php @@ -42,6 +42,7 @@ class ProductsResponseBotd implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ProductsResponseBotd'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\BotdResult */ public function getData(): ?BotdResult { @@ -219,6 +223,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..d69e0a42 100644 --- a/src/Model/ProductsResponseIdentification.php +++ b/src/Model/ProductsResponseIdentification.php @@ -42,6 +42,7 @@ class ProductsResponseIdentification implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ProductsResponseIdentification'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\ProductsResponseIdentificationData */ public function getData(): ?ProductsResponseIdentificationData { @@ -219,6 +223,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..b527165e 100644 --- a/src/Model/ProductsResponseIdentificationData.php +++ b/src/Model/ProductsResponseIdentificationData.php @@ -42,6 +42,7 @@ class ProductsResponseIdentificationData implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ProductsResponseIdentificationData'; @@ -190,6 +191,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -402,6 +404,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -514,6 +518,8 @@ public function setTag(array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -536,6 +542,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence { diff --git a/src/Model/ProxyResult.php b/src/Model/ProxyResult.php index 0ba7fc50..17d7e2c8 100644 --- a/src/Model/ProxyResult.php +++ b/src/Model/ProxyResult.php @@ -42,6 +42,7 @@ class ProxyResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ProxyResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/RawDeviceAttributesResult.php b/src/Model/RawDeviceAttributesResult.php index 1e560cb3..2f13768d 100644 --- a/src/Model/RawDeviceAttributesResult.php +++ b/src/Model/RawDeviceAttributesResult.php @@ -44,6 +44,7 @@ class RawDeviceAttributesResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'RawDeviceAttributesResult'; @@ -105,6 +106,7 @@ public function __construct(?array $data = null) {} /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/RemoteControlResult.php b/src/Model/RemoteControlResult.php index 125baf85..69020e7e 100644 --- a/src/Model/RemoteControlResult.php +++ b/src/Model/RemoteControlResult.php @@ -42,6 +42,7 @@ class RemoteControlResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'RemoteControlResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/Response.php b/src/Model/Response.php index 93de00cc..7cc4f418 100644 --- a/src/Model/Response.php +++ b/src/Model/Response.php @@ -44,6 +44,7 @@ class Response implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'Response'; @@ -126,6 +127,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -266,6 +268,8 @@ public function setVisits(array $visits): self /** * Gets last_timestamp. + * + * @return ?int */ public function getLastTimestamp(): ?int { @@ -288,6 +292,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..10504a59 100644 --- a/src/Model/ResponseVisits.php +++ b/src/Model/ResponseVisits.php @@ -42,6 +42,7 @@ class ResponseVisits implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'ResponseVisits'; @@ -184,6 +185,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -393,6 +395,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -505,6 +509,8 @@ public function setTag(array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -527,6 +533,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence { diff --git a/src/Model/RootAppsResult.php b/src/Model/RootAppsResult.php index 6c1c82cf..cc4138eb 100644 --- a/src/Model/RootAppsResult.php +++ b/src/Model/RootAppsResult.php @@ -42,6 +42,7 @@ class RootAppsResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'RootAppsResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/SeenAt.php b/src/Model/SeenAt.php index 29de802d..26e11533 100644 --- a/src/Model/SeenAt.php +++ b/src/Model/SeenAt.php @@ -42,6 +42,7 @@ class SeenAt implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SeenAt'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/SignalResponseClonedApp.php b/src/Model/SignalResponseClonedApp.php index 588a2cf2..c32a395c 100644 --- a/src/Model/SignalResponseClonedApp.php +++ b/src/Model/SignalResponseClonedApp.php @@ -42,6 +42,7 @@ class SignalResponseClonedApp implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseClonedApp'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\ClonedAppResult */ public function getData(): ?ClonedAppResult { @@ -219,6 +223,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..14b191c6 100644 --- a/src/Model/SignalResponseDeveloperTools.php +++ b/src/Model/SignalResponseDeveloperTools.php @@ -42,6 +42,7 @@ class SignalResponseDeveloperTools implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseDeveloperTools'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\DeveloperToolsResult */ public function getData(): ?DeveloperToolsResult { @@ -219,6 +223,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..cca465a7 100644 --- a/src/Model/SignalResponseEmulator.php +++ b/src/Model/SignalResponseEmulator.php @@ -42,6 +42,7 @@ class SignalResponseEmulator implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseEmulator'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\EmulatorResult */ public function getData(): ?EmulatorResult { @@ -219,6 +223,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..ad4848f0 100644 --- a/src/Model/SignalResponseFactoryReset.php +++ b/src/Model/SignalResponseFactoryReset.php @@ -42,6 +42,7 @@ class SignalResponseFactoryReset implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseFactoryReset'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\FactoryResetResult */ public function getData(): ?FactoryResetResult { @@ -219,6 +223,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..fc915ca5 100644 --- a/src/Model/SignalResponseFrida.php +++ b/src/Model/SignalResponseFrida.php @@ -42,6 +42,7 @@ class SignalResponseFrida implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseFrida'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\FridaResult */ public function getData(): ?FridaResult { @@ -219,6 +223,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..919a4827 100644 --- a/src/Model/SignalResponseHighActivity.php +++ b/src/Model/SignalResponseHighActivity.php @@ -42,6 +42,7 @@ class SignalResponseHighActivity implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseHighActivity'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\HighActivityResult */ public function getData(): ?HighActivityResult { @@ -219,6 +223,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..1fb3e089 100644 --- a/src/Model/SignalResponseIncognito.php +++ b/src/Model/SignalResponseIncognito.php @@ -42,6 +42,7 @@ class SignalResponseIncognito implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseIncognito'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\IncognitoResult */ public function getData(): ?IncognitoResult { @@ -219,6 +223,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..ccff61c3 100644 --- a/src/Model/SignalResponseIpBlocklist.php +++ b/src/Model/SignalResponseIpBlocklist.php @@ -42,6 +42,7 @@ class SignalResponseIpBlocklist implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseIpBlocklist'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\IpBlockListResult */ public function getData(): ?IpBlockListResult { @@ -219,6 +223,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..8dbcc562 100644 --- a/src/Model/SignalResponseIpInfo.php +++ b/src/Model/SignalResponseIpInfo.php @@ -42,6 +42,7 @@ class SignalResponseIpInfo implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseIpInfo'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResult */ public function getData(): ?IpInfoResult { @@ -219,6 +223,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..2d628b15 100644 --- a/src/Model/SignalResponseJailbroken.php +++ b/src/Model/SignalResponseJailbroken.php @@ -42,6 +42,7 @@ class SignalResponseJailbroken implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseJailbroken'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\JailbrokenResult */ public function getData(): ?JailbrokenResult { @@ -219,6 +223,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..344e2d61 100644 --- a/src/Model/SignalResponseLocationSpoofing.php +++ b/src/Model/SignalResponseLocationSpoofing.php @@ -42,6 +42,7 @@ class SignalResponseLocationSpoofing implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseLocationSpoofing'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\LocationSpoofingResult */ public function getData(): ?LocationSpoofingResult { @@ -219,6 +223,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..3fb7744e 100644 --- a/src/Model/SignalResponsePrivacySettings.php +++ b/src/Model/SignalResponsePrivacySettings.php @@ -42,6 +42,7 @@ class SignalResponsePrivacySettings implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponsePrivacySettings'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\PrivacySettingsResult */ public function getData(): ?PrivacySettingsResult { @@ -219,6 +223,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..e4fc356a 100644 --- a/src/Model/SignalResponseProxy.php +++ b/src/Model/SignalResponseProxy.php @@ -42,6 +42,7 @@ class SignalResponseProxy implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseProxy'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\ProxyResult */ public function getData(): ?ProxyResult { @@ -219,6 +223,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..7c1cef09 100644 --- a/src/Model/SignalResponseRawDeviceAttributes.php +++ b/src/Model/SignalResponseRawDeviceAttributes.php @@ -42,6 +42,7 @@ class SignalResponseRawDeviceAttributes implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseRawDeviceAttributes'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\RawDeviceAttributesResult */ public function getData(): array { @@ -219,6 +223,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..f3298e10 100644 --- a/src/Model/SignalResponseRemoteControl.php +++ b/src/Model/SignalResponseRemoteControl.php @@ -42,6 +42,7 @@ class SignalResponseRemoteControl implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseRemoteControl'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\RemoteControlResult */ public function getData(): ?RemoteControlResult { @@ -219,6 +223,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..3e8dc013 100644 --- a/src/Model/SignalResponseRootApps.php +++ b/src/Model/SignalResponseRootApps.php @@ -42,6 +42,7 @@ class SignalResponseRootApps implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseRootApps'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\RootAppsResult */ public function getData(): ?RootAppsResult { @@ -219,6 +223,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..21d0ac61 100644 --- a/src/Model/SignalResponseSuspectScore.php +++ b/src/Model/SignalResponseSuspectScore.php @@ -42,6 +42,7 @@ class SignalResponseSuspectScore implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseSuspectScore'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\SuspectScoreResult */ public function getData(): ?SuspectScoreResult { @@ -219,6 +223,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..40c6e9ea 100644 --- a/src/Model/SignalResponseTampering.php +++ b/src/Model/SignalResponseTampering.php @@ -42,6 +42,7 @@ class SignalResponseTampering implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseTampering'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\TamperingResult */ public function getData(): ?TamperingResult { @@ -219,6 +223,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..07444f24 100644 --- a/src/Model/SignalResponseTor.php +++ b/src/Model/SignalResponseTor.php @@ -42,6 +42,7 @@ class SignalResponseTor implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseTor'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\TorResult */ public function getData(): ?TorResult { @@ -219,6 +223,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..ca56dc84 100644 --- a/src/Model/SignalResponseVelocity.php +++ b/src/Model/SignalResponseVelocity.php @@ -42,6 +42,7 @@ class SignalResponseVelocity implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseVelocity'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\VelocityResult */ public function getData(): ?VelocityResult { @@ -219,6 +223,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..3fa6d92a 100644 --- a/src/Model/SignalResponseVirtualMachine.php +++ b/src/Model/SignalResponseVirtualMachine.php @@ -42,6 +42,7 @@ class SignalResponseVirtualMachine implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseVirtualMachine'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\VirtualMachineResult */ public function getData(): ?VirtualMachineResult { @@ -219,6 +223,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..3e60dfdf 100644 --- a/src/Model/SignalResponseVpn.php +++ b/src/Model/SignalResponseVpn.php @@ -42,6 +42,7 @@ class SignalResponseVpn implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SignalResponseVpn'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets data. + * + * @return ?\Fingerprint\ServerAPI\Model\VpnResult */ public function getData(): ?VpnResult { @@ -219,6 +223,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..a7ac9adb 100644 --- a/src/Model/Subdivision.php +++ b/src/Model/Subdivision.php @@ -42,6 +42,7 @@ class Subdivision implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'Subdivision'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -197,6 +199,8 @@ public function valid(): bool /** * Gets iso_code. + * + * @return ?string */ public function getIsoCode(): ?string { @@ -219,6 +223,8 @@ public function setIsoCode(?string $iso_code): self /** * Gets name. + * + * @return ?string */ public function getName(): ?string { diff --git a/src/Model/SuspectScoreResult.php b/src/Model/SuspectScoreResult.php index 3225bda1..5b0e0653 100644 --- a/src/Model/SuspectScoreResult.php +++ b/src/Model/SuspectScoreResult.php @@ -42,6 +42,7 @@ class SuspectScoreResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'SuspectScoreResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/TamperingResult.php b/src/Model/TamperingResult.php index e642bcd4..2653a12f 100644 --- a/src/Model/TamperingResult.php +++ b/src/Model/TamperingResult.php @@ -42,6 +42,7 @@ class TamperingResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'TamperingResult'; @@ -112,6 +113,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/TooManyRequestsResponse.php b/src/Model/TooManyRequestsResponse.php index 6034721b..e3bfd5a5 100644 --- a/src/Model/TooManyRequestsResponse.php +++ b/src/Model/TooManyRequestsResponse.php @@ -42,6 +42,7 @@ class TooManyRequestsResponse implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'TooManyRequestsResponse'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/TorResult.php b/src/Model/TorResult.php index c09aeaaf..2d803ab0 100644 --- a/src/Model/TorResult.php +++ b/src/Model/TorResult.php @@ -42,6 +42,7 @@ class TorResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'TorResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/VelocityIntervalResult.php b/src/Model/VelocityIntervalResult.php index 2f60b5d5..46b32c29 100644 --- a/src/Model/VelocityIntervalResult.php +++ b/src/Model/VelocityIntervalResult.php @@ -44,6 +44,7 @@ class VelocityIntervalResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'VelocityIntervalResult'; @@ -120,6 +121,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -258,6 +260,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..591577fa 100644 --- a/src/Model/VelocityIntervals.php +++ b/src/Model/VelocityIntervals.php @@ -42,6 +42,7 @@ class VelocityIntervals implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'VelocityIntervals'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -191,6 +193,8 @@ public function valid(): bool /** * Gets intervals. + * + * @return ?\Fingerprint\ServerAPI\Model\VelocityIntervalResult */ public function getIntervals(): ?VelocityIntervalResult { diff --git a/src/Model/VelocityResult.php b/src/Model/VelocityResult.php index 5e2a665e..c49a4f3b 100644 --- a/src/Model/VelocityResult.php +++ b/src/Model/VelocityResult.php @@ -44,6 +44,7 @@ class VelocityResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'VelocityResult'; @@ -126,6 +127,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/VirtualMachineResult.php b/src/Model/VirtualMachineResult.php index 644f9144..3bf44306 100644 --- a/src/Model/VirtualMachineResult.php +++ b/src/Model/VirtualMachineResult.php @@ -42,6 +42,7 @@ class VirtualMachineResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'VirtualMachineResult'; @@ -106,6 +107,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/Visit.php b/src/Model/Visit.php index 4798b030..1cf5e874 100644 --- a/src/Model/Visit.php +++ b/src/Model/Visit.php @@ -42,6 +42,7 @@ class Visit implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'Visit'; @@ -184,6 +185,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -390,6 +392,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -502,6 +506,8 @@ public function setTag(?array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -524,6 +530,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..d6f37950 100644 --- a/src/Model/VpnResult.php +++ b/src/Model/VpnResult.php @@ -42,6 +42,7 @@ class VpnResult implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'VpnResult'; @@ -124,6 +125,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -265,6 +267,8 @@ public function setOriginTimezone(string $origin_timezone): self /** * Gets origin_country. + * + * @return ?string */ public function getOriginCountry(): ?string { diff --git a/src/Model/VpnResultMethods.php b/src/Model/VpnResultMethods.php index 36f39b53..061daf32 100644 --- a/src/Model/VpnResultMethods.php +++ b/src/Model/VpnResultMethods.php @@ -42,6 +42,7 @@ class VpnResultMethods implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'VpnResult_methods'; @@ -124,6 +125,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { diff --git a/src/Model/WebhookVisit.php b/src/Model/WebhookVisit.php index f7872300..ab9c9791 100644 --- a/src/Model/WebhookVisit.php +++ b/src/Model/WebhookVisit.php @@ -42,6 +42,7 @@ class WebhookVisit implements ModelInterface, \ArrayAccess { /** * The original name of the model. + * */ protected static string $swaggerModelName = 'WebhookVisit'; @@ -334,6 +335,7 @@ public function __construct(?array $data = null) /** * Gets the string presentation of the object. + * */ public function __toString(): string { @@ -477,6 +479,8 @@ public function setVisitorId(string $visitor_id): self /** * Gets client_referrer. + * + * @return ?string */ public function getClientReferrer(): ?string { @@ -499,6 +503,8 @@ public function setClientReferrer(?string $client_referrer): self /** * Gets user_agent. + * + * @return ?string */ public function getUserAgent(): ?string { @@ -521,6 +527,8 @@ public function setUserAgent(?string $user_agent): self /** * Gets bot. + * + * @return ?\Fingerprint\ServerAPI\Model\BotdDetectionResult */ public function getBot(): ?BotdDetectionResult { @@ -543,6 +551,8 @@ public function setBot(?BotdDetectionResult $bot): self /** * Gets ip_info. + * + * @return ?\Fingerprint\ServerAPI\Model\IpInfoResult */ public function getIpInfo(): ?IpInfoResult { @@ -587,6 +597,8 @@ public function setIncognito(bool $incognito): self /** * Gets root_apps. + * + * @return ?\Fingerprint\ServerAPI\Model\RootAppsResult */ public function getRootApps(): ?RootAppsResult { @@ -609,6 +621,8 @@ public function setRootApps(?RootAppsResult $root_apps): self /** * Gets emulator. + * + * @return ?\Fingerprint\ServerAPI\Model\EmulatorResult */ public function getEmulator(): ?EmulatorResult { @@ -631,6 +645,8 @@ public function setEmulator(?EmulatorResult $emulator): self /** * Gets cloned_app. + * + * @return ?\Fingerprint\ServerAPI\Model\ClonedAppResult */ public function getClonedApp(): ?ClonedAppResult { @@ -653,6 +669,8 @@ public function setClonedApp(?ClonedAppResult $cloned_app): self /** * Gets factory_reset. + * + * @return ?\Fingerprint\ServerAPI\Model\FactoryResetResult */ public function getFactoryReset(): ?FactoryResetResult { @@ -675,6 +693,8 @@ public function setFactoryReset(?FactoryResetResult $factory_reset): self /** * Gets jailbroken. + * + * @return ?\Fingerprint\ServerAPI\Model\JailbrokenResult */ public function getJailbroken(): ?JailbrokenResult { @@ -697,6 +717,8 @@ public function setJailbroken(?JailbrokenResult $jailbroken): self /** * Gets frida. + * + * @return ?\Fingerprint\ServerAPI\Model\FridaResult */ public function getFrida(): ?FridaResult { @@ -719,6 +741,8 @@ public function setFrida(?FridaResult $frida): self /** * Gets ip_blocklist. + * + * @return ?\Fingerprint\ServerAPI\Model\IpBlockListResult */ public function getIpBlocklist(): ?IpBlockListResult { @@ -741,6 +765,8 @@ public function setIpBlocklist(?IpBlockListResult $ip_blocklist): self /** * Gets tor. + * + * @return ?\Fingerprint\ServerAPI\Model\TorResult */ public function getTor(): ?TorResult { @@ -763,6 +789,8 @@ public function setTor(?TorResult $tor): self /** * Gets privacy_settings. + * + * @return ?\Fingerprint\ServerAPI\Model\PrivacySettingsResult */ public function getPrivacySettings(): ?PrivacySettingsResult { @@ -785,6 +813,8 @@ public function setPrivacySettings(?PrivacySettingsResult $privacy_settings): se /** * Gets virtual_machine. + * + * @return ?\Fingerprint\ServerAPI\Model\VirtualMachineResult */ public function getVirtualMachine(): ?VirtualMachineResult { @@ -807,6 +837,8 @@ public function setVirtualMachine(?VirtualMachineResult $virtual_machine): self /** * Gets vpn. + * + * @return ?\Fingerprint\ServerAPI\Model\VpnResult */ public function getVpn(): ?VpnResult { @@ -829,6 +861,8 @@ public function setVpn(?VpnResult $vpn): self /** * Gets proxy. + * + * @return ?\Fingerprint\ServerAPI\Model\ProxyResult */ public function getProxy(): ?ProxyResult { @@ -851,6 +885,8 @@ public function setProxy(?ProxyResult $proxy): self /** * Gets tampering. + * + * @return ?\Fingerprint\ServerAPI\Model\TamperingResult */ public function getTampering(): ?TamperingResult { @@ -873,6 +909,8 @@ public function setTampering(?TamperingResult $tampering): self /** * Gets raw_device_attributes. + * + * @return ?\Fingerprint\ServerAPI\Model\RawDeviceAttributesResult */ public function getRawDeviceAttributes(): ?RawDeviceAttributesResult { @@ -895,6 +933,8 @@ public function setRawDeviceAttributes(?RawDeviceAttributesResult $raw_device_at /** * Gets high_activity. + * + * @return ?\Fingerprint\ServerAPI\Model\HighActivityResult */ public function getHighActivity(): ?HighActivityResult { @@ -917,6 +957,8 @@ public function setHighActivity(?HighActivityResult $high_activity): self /** * Gets location_spoofing. + * + * @return ?\Fingerprint\ServerAPI\Model\LocationSpoofingResult */ public function getLocationSpoofing(): ?LocationSpoofingResult { @@ -939,6 +981,8 @@ public function setLocationSpoofing(?LocationSpoofingResult $location_spoofing): /** * Gets suspect_score. + * + * @return ?\Fingerprint\ServerAPI\Model\SuspectScoreResult */ public function getSuspectScore(): ?SuspectScoreResult { @@ -961,6 +1005,8 @@ public function setSuspectScore(?SuspectScoreResult $suspect_score): self /** * Gets remote_control. + * + * @return ?\Fingerprint\ServerAPI\Model\RemoteControlResult */ public function getRemoteControl(): ?RemoteControlResult { @@ -983,6 +1029,8 @@ public function setRemoteControl(?RemoteControlResult $remote_control): self /** * Gets velocity. + * + * @return ?\Fingerprint\ServerAPI\Model\VelocityResult */ public function getVelocity(): ?VelocityResult { @@ -1005,6 +1053,8 @@ public function setVelocity(?VelocityResult $velocity): self /** * Gets developer_tools. + * + * @return ?\Fingerprint\ServerAPI\Model\DeveloperToolsResult */ public function getDeveloperTools(): ?DeveloperToolsResult { @@ -1093,6 +1143,8 @@ public function setIp(string $ip): self /** * Gets ip_location. + * + * @return ?\Fingerprint\ServerAPI\Model\DeprecatedIPLocation */ public function getIpLocation(): ?DeprecatedIPLocation { @@ -1205,6 +1257,8 @@ public function setTag(?array $tag): self /** * Gets linked_id. + * + * @return ?string */ public function getLinkedId(): ?string { @@ -1227,6 +1281,8 @@ public function setLinkedId(?string $linked_id): self /** * Gets confidence. + * + * @return ?\Fingerprint\ServerAPI\Model\Confidence */ public function getConfidence(): ?Confidence { diff --git a/src/ObjectSerializer.php b/src/ObjectSerializer.php index 6eaa1a32..d716f907 100644 --- a/src/ObjectSerializer.php +++ b/src/ObjectSerializer.php @@ -46,7 +46,7 @@ class ObjectSerializer * Serialize data. * * @param mixed $data the data to serialize - * @param null|string $format the format of the Swagger type of the data + * @param string|null $format the format of the Swagger type of the data * * @return array|object|string serialized form of $data */ @@ -117,7 +117,7 @@ public static function toPathValue(string $value): string * later. * * @param \DateTime|string|string[] $object an object to be serialized to a string - * @param null|string $format the format of the parameter + * @param string|null $format the format of the parameter * * @return string the serialized object */ @@ -137,7 +137,7 @@ public static function toQueryValue(array|\DateTime|string $object, ?string $for * If it's a date, format it in Y-m-d. * * @param \DateTime|string $value the value of the parameter - * @param null|string $format the format of the parameter + * @param string|null $format the format of the parameter * * @return string the header string */