diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION index 93c8dda..4bc5d61 100644 --- a/.openapi-generator/VERSION +++ b/.openapi-generator/VERSION @@ -1 +1 @@ -7.6.0 +7.9.0 diff --git a/.release.json b/.release.json index 64db771..0c6520c 100644 --- a/.release.json +++ b/.release.json @@ -1,9 +1,9 @@ { "source": { "repo_url": "https://github.com/onfido/onfido-openapi-spec", - "short_sha": "10f8380", - "long_sha": "10f83806efa080edbf022ac48d5eeac90fbceb0c", - "version": "" + "short_sha": "2998dd3", + "long_sha": "2998dd3ad2db49a33e0ecf9b41c7cf873909ef0b", + "version": "v4.0.0" }, - "release": "v7.5.0" + "release": "v8.0.0" } diff --git a/MIGRATION.md b/MIGRATION.md new file mode 100644 index 0000000..a94106d --- /dev/null +++ b/MIGRATION.md @@ -0,0 +1,31 @@ +# Migration Guide + +## Upgrading from 7.x to 8.x + +### Core Resources + +- Applicants + - Replace broken `ConsentsBuilder` object with a list of `ApplicantConsentBuilder` ones +- Workflow Runs + - Rename `WorkflowRunSharedLink` object into `WorkflowRunLink` + - Define `WorkflowRunStatus` enum for storing status information + - Rename `WorkflowRunResponseError` object into `WorkflowRunError` +- Documents + - Reuse already existent `DocumentTypes` enum when uploading documents + +### Other Endpoints + +- Webhooks + - Define `WebhookEventObjectStatus` enum to collect webhook event object's status + - Define `WebhookEventResourceType` enum to collect webhhok event resource's type + - Define `WebhookEventPayloadResource` object to store webhook payload's contents +- Checks + - Rename `Check::Status*` enum into `CheckStatus::*` for accessing checks status +- Reports + - Remove properties from `DeviceIntelligenceBreakdownPropertiesDevice` object: `true_os`, `os_anomaly`, `rooted` and `remote_software` + - Remove properties from `DeviceIntelligenceBreakdownPropertiesIp` object: `vpn_detection`, `proxy_detection` and `type` + - Deprecate `records` object from `WatchlistStandardProperties` and `WatchlistAmlProperties` objects (includes `WatchlistPepsOnly` and `WatchlistSanctionsOnly` ones) + +### OpenAPI generator + +- Version upgraded from 7.6.0 to 7.9.0 diff --git a/README.md b/README.md index 7130070..69f0036 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Except for accessing Task object's outputs, retain from using the square bracket ## Contributing -This library is automatically generated using [OpenAPI Generator](https://openapi-generator.tech) (version: 7.6.0); therefore all the contributions, except tests files, should target [Onfido OpenAPI specification repository](https://github.com/onfido/onfido-openapi-spec/tree/master) instead of this repository. +This library is automatically generated using [OpenAPI Generator](https://openapi-generator.tech) (version: 7.9.0); therefore all the contributions, except tests files, should target [Onfido OpenAPI specification repository](https://github.com/onfido/onfido-openapi-spec/tree/master) instead of this repository. For contributions to the tests instead, please follow the steps below: diff --git a/composer.json b/composer.json index b628832..25d56a6 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "onfido/onfido-php", - "version": "7.5.0", + "version": "8.0.0", "description": "The Onfido API (v3.6)", "keywords": [ "openapitools", diff --git a/composer.lock b/composer.lock index 742f46c..c93f4c4 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4e6740c934544fe47710b81e975aeb22", + "content-hash": "d463eafa1c472f70f435129b0cedf403", "packages": [ { "name": "guzzlehttp/guzzle", diff --git a/lib/Api/DefaultApi.php b/lib/Api/DefaultApi.php index ae07e8c..b35af7c 100644 --- a/lib/Api/DefaultApi.php +++ b/lib/Api/DefaultApi.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** @@ -281,7 +281,7 @@ public function __construct( $hostIndex = 0 ) { $this->client = $client ?: new Client(); - $this->config = $config ?: new Configuration(); + $this->config = $config ?: Configuration::getDefaultConfiguration(); $this->headerSelector = $selector ?: new HeaderSelector(); $this->hostIndex = $hostIndex; } @@ -369,18 +369,6 @@ public function cancelReportWithHttpInfo($report_id, string $contentType = self: $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -615,18 +603,6 @@ public function completeTaskWithHttpInfo($workflow_run_id, $task_id, $complete_t $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -893,18 +869,6 @@ public function createApplicantWithHttpInfo($applicant_builder, string $contentT $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -963,6 +927,19 @@ public function createApplicantWithHttpInfo($applicant_builder, string $contentT ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Applicant'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -1239,18 +1216,6 @@ public function createCheckWithHttpInfo($check_builder, string $contentType = se $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -1309,6 +1274,19 @@ public function createCheckWithHttpInfo($check_builder, string $contentType = se ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Check'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -1585,18 +1563,6 @@ public function createTimelineFileWithHttpInfo($workflow_run_id, string $content $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 202: @@ -1655,6 +1621,19 @@ public function createTimelineFileWithHttpInfo($workflow_run_id, string $content ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\TimelineFileReference'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -1932,18 +1911,6 @@ public function createWatchlistMonitorWithHttpInfo($watchlist_monitor_builder, s $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -2002,6 +1969,19 @@ public function createWatchlistMonitorWithHttpInfo($watchlist_monitor_builder, s ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WatchlistMonitor'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -2278,18 +2258,6 @@ public function createWebhookWithHttpInfo($webhook_builder, string $contentType $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -2348,6 +2316,19 @@ public function createWebhookWithHttpInfo($webhook_builder, string $contentType ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Webhook'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -2624,18 +2605,6 @@ public function createWorkflowRunWithHttpInfo($workflow_run_builder, string $con $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -2694,6 +2663,19 @@ public function createWorkflowRunWithHttpInfo($workflow_run_builder, string $con ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WorkflowRun'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -2969,18 +2951,6 @@ public function deleteApplicantWithHttpInfo($applicant_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -3211,18 +3181,6 @@ public function deleteWatchlistMonitorWithHttpInfo($monitor_id, string $contentT $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -3453,18 +3411,6 @@ public function deleteWebhookWithHttpInfo($webhook_id, string $contentType = sel $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -3696,18 +3642,6 @@ public function downloadCheckWithHttpInfo($check_id, string $contentType = self: $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -3766,6 +3700,19 @@ public function downloadCheckWithHttpInfo($check_id, string $contentType = self: ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -4043,18 +3990,6 @@ public function downloadDocumentWithHttpInfo($document_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -4113,15 +4048,28 @@ public function downloadDocumentWithHttpInfo($document_id, string $contentType = ]; } - $returnType = '\SplFileObject'; - if ($returnType === '\SplFileObject') { - $content = $response->getBody(); //stream goes to serializer - } else { - $content = (string) $response->getBody(); - if ($returnType !== 'string') { - try { - $content = json_decode($content, false, 512, JSON_THROW_ON_ERROR); - } catch (\JsonException $exception) { + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + $returnType = '\SplFileObject'; + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + try { + $content = json_decode($content, false, 512, JSON_THROW_ON_ERROR); + } catch (\JsonException $exception) { throw new ApiException( sprintf( 'Error JSON decoding server response (%s)', @@ -4390,18 +4338,6 @@ public function downloadDocumentVideoWithHttpInfo($document_id, string $contentT $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -4460,6 +4396,19 @@ public function downloadDocumentVideoWithHttpInfo($document_id, string $contentT ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -4737,18 +4686,6 @@ public function downloadIdPhotoWithHttpInfo($id_photo_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -4807,6 +4744,19 @@ public function downloadIdPhotoWithHttpInfo($id_photo_id, string $contentType = ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -5084,18 +5034,6 @@ public function downloadLivePhotoWithHttpInfo($live_photo_id, string $contentTyp $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -5154,6 +5092,19 @@ public function downloadLivePhotoWithHttpInfo($live_photo_id, string $contentTyp ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -5431,18 +5382,6 @@ public function downloadLiveVideoWithHttpInfo($live_video_id, string $contentTyp $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -5501,6 +5440,19 @@ public function downloadLiveVideoWithHttpInfo($live_video_id, string $contentTyp ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -5778,18 +5730,6 @@ public function downloadLiveVideoFrameWithHttpInfo($live_video_id, string $conte $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -5848,6 +5788,19 @@ public function downloadLiveVideoFrameWithHttpInfo($live_video_id, string $conte ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -6125,18 +6078,6 @@ public function downloadMotionCaptureWithHttpInfo($motion_capture_id, string $co $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -6195,6 +6136,19 @@ public function downloadMotionCaptureWithHttpInfo($motion_capture_id, string $co ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -6472,18 +6426,6 @@ public function downloadMotionCaptureFrameWithHttpInfo($motion_capture_id, strin $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -6542,6 +6484,19 @@ public function downloadMotionCaptureFrameWithHttpInfo($motion_capture_id, strin ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -6821,18 +6776,6 @@ public function downloadQesDocumentWithHttpInfo($workflow_run_id, $file_id, stri $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -6891,6 +6834,19 @@ public function downloadQesDocumentWithHttpInfo($workflow_run_id, $file_id, stri ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -7188,18 +7144,6 @@ public function downloadSignedEvidenceFileWithHttpInfo($workflow_run_id, string $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -7258,6 +7202,19 @@ public function downloadSignedEvidenceFileWithHttpInfo($workflow_run_id, string ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -7535,18 +7492,6 @@ public function extractWithHttpInfo($extract_request, string $contentType = self $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -7605,6 +7550,19 @@ public function extractWithHttpInfo($extract_request, string $contentType = self ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Extraction'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -7881,18 +7839,6 @@ public function findAddressesWithHttpInfo($postcode, string $contentType = self: $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -7951,6 +7897,19 @@ public function findAddressesWithHttpInfo($postcode, string $contentType = self: ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\AddressesList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -8229,18 +8188,6 @@ public function findApplicantWithHttpInfo($applicant_id, string $contentType = s $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -8299,6 +8246,19 @@ public function findApplicantWithHttpInfo($applicant_id, string $contentType = s ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Applicant'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -8576,18 +8536,6 @@ public function findCheckWithHttpInfo($check_id, string $contentType = self::con $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -8646,6 +8594,19 @@ public function findCheckWithHttpInfo($check_id, string $contentType = self::con ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Check'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -8923,18 +8884,6 @@ public function findDocumentWithHttpInfo($document_id, string $contentType = sel $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -8993,6 +8942,19 @@ public function findDocumentWithHttpInfo($document_id, string $contentType = sel ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Document'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -9270,18 +9232,6 @@ public function findIdPhotoWithHttpInfo($id_photo_id, string $contentType = self $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -9340,6 +9290,19 @@ public function findIdPhotoWithHttpInfo($id_photo_id, string $contentType = self ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\IdPhoto'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -9617,18 +9580,6 @@ public function findLivePhotoWithHttpInfo($live_photo_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -9687,6 +9638,19 @@ public function findLivePhotoWithHttpInfo($live_photo_id, string $contentType = ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\LivePhoto'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -9964,18 +9928,6 @@ public function findLiveVideoWithHttpInfo($live_video_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -10034,6 +9986,19 @@ public function findLiveVideoWithHttpInfo($live_video_id, string $contentType = ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\LiveVideo'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -10311,18 +10276,6 @@ public function findMotionCaptureWithHttpInfo($motion_capture_id, string $conten $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -10381,6 +10334,19 @@ public function findMotionCaptureWithHttpInfo($motion_capture_id, string $conten ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\MotionCapture'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -10658,18 +10624,6 @@ public function findReportWithHttpInfo($report_id, string $contentType = self::c $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -10728,6 +10682,19 @@ public function findReportWithHttpInfo($report_id, string $contentType = self::c ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Report'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -11007,18 +10974,6 @@ public function findTaskWithHttpInfo($workflow_run_id, $task_id, string $content $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -11077,6 +11032,19 @@ public function findTaskWithHttpInfo($workflow_run_id, $task_id, string $content ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Task'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -11374,18 +11342,6 @@ public function findTimelineFileWithHttpInfo($workflow_run_id, $timeline_file_id $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -11444,6 +11400,19 @@ public function findTimelineFileWithHttpInfo($workflow_run_id, $timeline_file_id ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\SplFileObject'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -11739,18 +11708,6 @@ public function findWatchlistMonitorWithHttpInfo($monitor_id, string $contentTyp $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -11809,6 +11766,19 @@ public function findWatchlistMonitorWithHttpInfo($monitor_id, string $contentTyp ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WatchlistMonitor'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -12086,18 +12056,6 @@ public function findWebhookWithHttpInfo($webhook_id, string $contentType = self: $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -12156,6 +12114,19 @@ public function findWebhookWithHttpInfo($webhook_id, string $contentType = self: ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Webhook'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -12433,18 +12404,6 @@ public function findWorkflowRunWithHttpInfo($workflow_run_id, string $contentTyp $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -12503,6 +12462,19 @@ public function findWorkflowRunWithHttpInfo($workflow_run_id, string $contentTyp ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WorkflowRun'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -12779,18 +12751,6 @@ public function forceReportCreationFromWatchlistMonitorWithHttpInfo($monitor_id, $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -13022,18 +12982,6 @@ public function generateSdkTokenWithHttpInfo($sdk_token_builder, string $content $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -13092,6 +13040,19 @@ public function generateSdkTokenWithHttpInfo($sdk_token_builder, string $content ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\SdkToken'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -13372,18 +13333,6 @@ public function listApplicantsWithHttpInfo($page = 1, $per_page = 20, $include_d $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -13442,6 +13391,19 @@ public function listApplicantsWithHttpInfo($page = 1, $per_page = 20, $include_d ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\ApplicantsList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -13740,18 +13702,6 @@ public function listChecksWithHttpInfo($applicant_id, string $contentType = self $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -13810,6 +13760,19 @@ public function listChecksWithHttpInfo($applicant_id, string $contentType = self ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\ChecksList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -14088,18 +14051,6 @@ public function listDocumentsWithHttpInfo($applicant_id, string $contentType = s $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -14158,6 +14109,19 @@ public function listDocumentsWithHttpInfo($applicant_id, string $contentType = s ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\DocumentsList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -14436,19 +14400,7 @@ public function listIdPhotosWithHttpInfo($applicant_id, string $contentType = se $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } - + switch($statusCode) { case 200: if ('\Onfido\Model\IdPhotosList' === '\SplFileObject') { @@ -14506,6 +14458,19 @@ public function listIdPhotosWithHttpInfo($applicant_id, string $contentType = se ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\IdPhotosList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -14784,18 +14749,6 @@ public function listLivePhotosWithHttpInfo($applicant_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -14854,6 +14807,19 @@ public function listLivePhotosWithHttpInfo($applicant_id, string $contentType = ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\LivePhotosList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -15132,18 +15098,6 @@ public function listLiveVideosWithHttpInfo($applicant_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -15202,6 +15156,19 @@ public function listLiveVideosWithHttpInfo($applicant_id, string $contentType = ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\LiveVideosList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -15480,18 +15447,6 @@ public function listMotionCapturesWithHttpInfo($applicant_id, string $contentTyp $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -15550,6 +15505,19 @@ public function listMotionCapturesWithHttpInfo($applicant_id, string $contentTyp ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\MotionCapturesList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -15828,18 +15796,6 @@ public function listRepeatAttemptsWithHttpInfo($report_id, string $contentType = $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -15898,6 +15854,19 @@ public function listRepeatAttemptsWithHttpInfo($report_id, string $contentType = ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\RepeatAttemptsList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -16175,18 +16144,6 @@ public function listReportsWithHttpInfo($check_id, string $contentType = self::c $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -16245,6 +16202,19 @@ public function listReportsWithHttpInfo($check_id, string $contentType = self::c ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\ReportsList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -16523,18 +16493,6 @@ public function listTasksWithHttpInfo($workflow_run_id, string $contentType = se $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -16593,6 +16551,19 @@ public function listTasksWithHttpInfo($workflow_run_id, string $contentType = se ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\TaskItem[]'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -16870,18 +16841,6 @@ public function listWatchlistMonitorMatchesWithHttpInfo($monitor_id, string $con $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -16913,6 +16872,19 @@ public function listWatchlistMonitorMatchesWithHttpInfo($monitor_id, string $con ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WatchlistMonitorMatchesList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -17184,18 +17156,6 @@ public function listWatchlistMonitorsWithHttpInfo($applicant_id, $include_delete $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -17254,6 +17214,19 @@ public function listWatchlistMonitorsWithHttpInfo($applicant_id, $include_delete ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WatchlistMonitorsList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -17543,18 +17516,6 @@ public function listWebhooksWithHttpInfo(string $contentType = self::contentType $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -17613,6 +17574,19 @@ public function listWebhooksWithHttpInfo(string $contentType = self::contentType ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WebhooksList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -17880,18 +17854,6 @@ public function listWorkflowRunsWithHttpInfo($page = 1, $status = null, $created $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -17950,6 +17912,19 @@ public function listWorkflowRunsWithHttpInfo($page = 1, $status = null, $created ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WorkflowRun[]'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -18272,18 +18247,6 @@ public function pingWithHttpInfo(string $contentType = self::contentTypes['ping' $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -18342,6 +18305,19 @@ public function pingWithHttpInfo(string $contentType = self::contentTypes['ping' ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = 'string'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -18601,18 +18577,6 @@ public function postResultsFeedbackWithHttpInfo($results_feedback, string $conte $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -18671,6 +18635,19 @@ public function postResultsFeedbackWithHttpInfo($results_feedback, string $conte ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\ResultsFeedback'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -18946,18 +18923,6 @@ public function resendWebhooksWithHttpInfo($webhook_resend, string $contentType $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -19187,18 +19152,6 @@ public function restoreApplicantWithHttpInfo($applicant_id, string $contentType $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -19429,18 +19382,6 @@ public function resumeCheckWithHttpInfo($check_id, string $contentType = self::c $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -19671,18 +19612,6 @@ public function resumeReportWithHttpInfo($report_id, string $contentType = self: $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } return [null, $statusCode, $response->getHeaders()]; @@ -19916,18 +19845,6 @@ public function updateApplicantWithHttpInfo($applicant_id, $applicant_updater, s $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -19986,6 +19903,19 @@ public function updateApplicantWithHttpInfo($applicant_id, $applicant_updater, s ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Applicant'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -20282,18 +20212,6 @@ public function updateWatchlistMonitorMatchWithHttpInfo($monitor_id, $watchlist_ $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -20352,6 +20270,19 @@ public function updateWatchlistMonitorMatchWithHttpInfo($monitor_id, $watchlist_ ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\WatchlistMonitorMatchesList'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -20648,18 +20579,6 @@ public function updateWebhookWithHttpInfo($webhook_id, $webhook_updater, string $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 200: @@ -20718,6 +20637,19 @@ public function updateWebhookWithHttpInfo($webhook_id, $webhook_updater, string ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Webhook'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -21026,18 +20958,6 @@ public function uploadDocumentWithHttpInfo($type, $applicant_id, $file, $file_ty $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -21096,6 +21016,19 @@ public function uploadDocumentWithHttpInfo($type, $applicant_id, $file, $file_ty ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\Document'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -21447,18 +21380,6 @@ public function uploadIdPhotoWithHttpInfo($applicant_id = null, $file = null, st $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -21517,6 +21438,19 @@ public function uploadIdPhotoWithHttpInfo($applicant_id = null, $file = null, st ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\IdPhoto'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -21804,18 +21738,6 @@ public function uploadLivePhotoWithHttpInfo($applicant_id = null, $file = null, $statusCode = $response->getStatusCode(); - if ($statusCode < 200 || $statusCode > 299) { - throw new ApiException( - sprintf( - '[%d] Error connecting to the API (%s)', - $statusCode, - (string) $request->getUri() - ), - $statusCode, - $response->getHeaders(), - (string) $response->getBody() - ); - } switch($statusCode) { case 201: @@ -21874,6 +21796,19 @@ public function uploadLivePhotoWithHttpInfo($applicant_id = null, $file = null, ]; } + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + $returnType = '\Onfido\Model\LivePhoto'; if ($returnType === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer diff --git a/lib/ApiException.php b/lib/ApiException.php index 4a0ca44..fa6d565 100644 --- a/lib/ApiException.php +++ b/lib/ApiException.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** @@ -49,7 +49,7 @@ class ApiException extends Exception /** * The HTTP header of the server response. * - * @var string[]|null + * @var string[][]|null */ protected $responseHeaders; @@ -65,7 +65,7 @@ class ApiException extends Exception * * @param string $message Error message * @param int $code HTTP status code - * @param string[]|null $responseHeaders HTTP response header + * @param string[][]|null $responseHeaders HTTP response header * @param \stdClass|string|null $responseBody HTTP decoded body of the server response either as \stdClass or string */ public function __construct($message = "", $code = 0, $responseHeaders = [], $responseBody = null) @@ -78,7 +78,7 @@ public function __construct($message = "", $code = 0, $responseHeaders = [], $re /** * Gets the HTTP response header * - * @return string[]|null HTTP response header + * @return string[][]|null HTTP response header */ public function getResponseHeaders() { diff --git a/lib/Configuration.php b/lib/Configuration.php index 93e8c53..5567e4f 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** @@ -87,7 +87,7 @@ class Configuration * * @var string */ - protected $userAgent = 'onfido-php/7.5.0'; + protected $userAgent = 'onfido-php/8.0.0'; /** * Debug switch (default set to false) @@ -404,7 +404,7 @@ public static function toDebugReport() $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; $report .= ' The version of the OpenAPI document: v3.6' . PHP_EOL; - $report .= ' SDK Package Version: 7.5.0' . PHP_EOL; + $report .= ' SDK Package Version: 8.0.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/lib/HeaderSelector.php b/lib/HeaderSelector.php index 557d0f2..5cdf5ad 100644 --- a/lib/HeaderSelector.php +++ b/lib/HeaderSelector.php @@ -16,7 +16,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** @@ -85,7 +85,7 @@ private function selectAcceptHeader(array $accept): ?string } # If none of the available Accept headers is of type "json", then just use all them - $headersWithJson = preg_grep('~(?i)^(application/json|[^;/ \t]+/[^;/ \t]+[+]json)[ \t]*(;.*)?$~', $accept); + $headersWithJson = $this->selectJsonMimeList($accept); if (count($headersWithJson) === 0) { return implode(',', $accept); } @@ -95,6 +95,34 @@ private function selectAcceptHeader(array $accept): ?string return $this->getAcceptHeaderWithAdjustedWeight($accept, $headersWithJson); } + /** + * Detects whether a string contains a valid JSON mime type + * + * @param string $searchString + * @return bool + */ + public function isJsonMime(string $searchString): bool + { + return preg_match('~^application/(json|[\w!#$&.+-^_]+\+json)\s*(;|$)~', $searchString) === 1; + } + + /** + * Select all items from a list containing a JSON mime type + * + * @param array $mimeList + * @return array + */ + private function selectJsonMimeList(array $mimeList): array { + $jsonMimeList = []; + foreach ($mimeList as $mime) { + if($this->isJsonMime($mime)) { + $jsonMimeList[] = $mime; + } + } + return $jsonMimeList; + } + + /** * Create an Accept header string from the given "Accept" headers array, recalculating all weights * diff --git a/lib/Model/Address.php b/lib/Model/Address.php index a6101e5..9432552 100644 --- a/lib/Model/Address.php +++ b/lib/Model/Address.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/AddressBuilder.php b/lib/Model/AddressBuilder.php index e4c7917..8eac13a 100644 --- a/lib/Model/AddressBuilder.php +++ b/lib/Model/AddressBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/AddressShared.php b/lib/Model/AddressShared.php index 22cdf46..301a974 100644 --- a/lib/Model/AddressShared.php +++ b/lib/Model/AddressShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/AddressesList.php b/lib/Model/AddressesList.php index 61c4464..e710c88 100644 --- a/lib/Model/AddressesList.php +++ b/lib/Model/AddressesList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Applicant.php b/lib/Model/Applicant.php index ab840c9..a301fba 100644 --- a/lib/Model/Applicant.php +++ b/lib/Model/Applicant.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantBuilder.php b/lib/Model/ApplicantBuilder.php index 234ae61..f00c64f 100644 --- a/lib/Model/ApplicantBuilder.php +++ b/lib/Model/ApplicantBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantConsentBuilder.php b/lib/Model/ApplicantConsentBuilder.php index 092aeaa..de1b1fa 100644 --- a/lib/Model/ApplicantConsentBuilder.php +++ b/lib/Model/ApplicantConsentBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantConsentName.php b/lib/Model/ApplicantConsentName.php index 7fbac9b..1888078 100644 --- a/lib/Model/ApplicantConsentName.php +++ b/lib/Model/ApplicantConsentName.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantCreate.php b/lib/Model/ApplicantCreate.php index 1051c3f..23b90dd 100644 --- a/lib/Model/ApplicantCreate.php +++ b/lib/Model/ApplicantCreate.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantRequest.php b/lib/Model/ApplicantRequest.php index 260efa5..1149d80 100644 --- a/lib/Model/ApplicantRequest.php +++ b/lib/Model/ApplicantRequest.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantResponse.php b/lib/Model/ApplicantResponse.php index 2766f53..c6fffe5 100644 --- a/lib/Model/ApplicantResponse.php +++ b/lib/Model/ApplicantResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantShared.php b/lib/Model/ApplicantShared.php index 3c6c446..a7d54bf 100644 --- a/lib/Model/ApplicantShared.php +++ b/lib/Model/ApplicantShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantUpdate.php b/lib/Model/ApplicantUpdate.php index 6de9c8f..a6ec074 100644 --- a/lib/Model/ApplicantUpdate.php +++ b/lib/Model/ApplicantUpdate.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantUpdater.php b/lib/Model/ApplicantUpdater.php index 98969bd..06e8e7b 100644 --- a/lib/Model/ApplicantUpdater.php +++ b/lib/Model/ApplicantUpdater.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ApplicantsList.php b/lib/Model/ApplicantsList.php index e62b5d0..d2751e0 100644 --- a/lib/Model/ApplicantsList.php +++ b/lib/Model/ApplicantsList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Check.php b/lib/Model/Check.php index 2de649a..0b16e9b 100644 --- a/lib/Model/Check.php +++ b/lib/Model/Check.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CheckBuilder.php b/lib/Model/CheckBuilder.php index d5acae2..dde322c 100644 --- a/lib/Model/CheckBuilder.php +++ b/lib/Model/CheckBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CheckRequest.php b/lib/Model/CheckRequest.php index 46a3608..29d045f 100644 --- a/lib/Model/CheckRequest.php +++ b/lib/Model/CheckRequest.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CheckResponse.php b/lib/Model/CheckResponse.php index 684f11c..e518ec2 100644 --- a/lib/Model/CheckResponse.php +++ b/lib/Model/CheckResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CheckShared.php b/lib/Model/CheckShared.php index 69ec3f5..f4c53d4 100644 --- a/lib/Model/CheckShared.php +++ b/lib/Model/CheckShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CheckStatus.php b/lib/Model/CheckStatus.php index e81e158..517894e 100644 --- a/lib/Model/CheckStatus.php +++ b/lib/Model/CheckStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ChecksList.php b/lib/Model/ChecksList.php index c9766ac..74248d7 100644 --- a/lib/Model/ChecksList.php +++ b/lib/Model/ChecksList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CompleteTaskBuilder.php b/lib/Model/CompleteTaskBuilder.php index 42818ae..47b34ac 100644 --- a/lib/Model/CompleteTaskBuilder.php +++ b/lib/Model/CompleteTaskBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CompleteTaskDataBuilder.php b/lib/Model/CompleteTaskDataBuilder.php index dbe34fe..b5c0ff9 100644 --- a/lib/Model/CompleteTaskDataBuilder.php +++ b/lib/Model/CompleteTaskDataBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/CountryCodes.php b/lib/Model/CountryCodes.php index 4f16fa6..bca9512 100644 --- a/lib/Model/CountryCodes.php +++ b/lib/Model/CountryCodes.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdown.php b/lib/Model/DeviceIntelligenceBreakdown.php index 93b1477..fa54d44 100644 --- a/lib/Model/DeviceIntelligenceBreakdown.php +++ b/lib/Model/DeviceIntelligenceBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownBreakdown.php b/lib/Model/DeviceIntelligenceBreakdownBreakdown.php index fcccd20..6d84997 100644 --- a/lib/Model/DeviceIntelligenceBreakdownBreakdown.php +++ b/lib/Model/DeviceIntelligenceBreakdownBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownBreakdownDevice.php b/lib/Model/DeviceIntelligenceBreakdownBreakdownDevice.php index d68e8db..66c1e8e 100644 --- a/lib/Model/DeviceIntelligenceBreakdownBreakdownDevice.php +++ b/lib/Model/DeviceIntelligenceBreakdownBreakdownDevice.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownBreakdownDeviceBreakdown.php b/lib/Model/DeviceIntelligenceBreakdownBreakdownDeviceBreakdown.php index 13af9cf..e7495ed 100644 --- a/lib/Model/DeviceIntelligenceBreakdownBreakdownDeviceBreakdown.php +++ b/lib/Model/DeviceIntelligenceBreakdownBreakdownDeviceBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownProperties.php b/lib/Model/DeviceIntelligenceBreakdownProperties.php index 688e14a..680963f 100644 --- a/lib/Model/DeviceIntelligenceBreakdownProperties.php +++ b/lib/Model/DeviceIntelligenceBreakdownProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownPropertiesDevice.php b/lib/Model/DeviceIntelligenceBreakdownPropertiesDevice.php index 4a6bc57..bb20283 100644 --- a/lib/Model/DeviceIntelligenceBreakdownPropertiesDevice.php +++ b/lib/Model/DeviceIntelligenceBreakdownPropertiesDevice.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownPropertiesGeolocation.php b/lib/Model/DeviceIntelligenceBreakdownPropertiesGeolocation.php index 544a02a..1c7d661 100644 --- a/lib/Model/DeviceIntelligenceBreakdownPropertiesGeolocation.php +++ b/lib/Model/DeviceIntelligenceBreakdownPropertiesGeolocation.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceBreakdownPropertiesIp.php b/lib/Model/DeviceIntelligenceBreakdownPropertiesIp.php index 68023ee..8612b95 100644 --- a/lib/Model/DeviceIntelligenceBreakdownPropertiesIp.php +++ b/lib/Model/DeviceIntelligenceBreakdownPropertiesIp.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DeviceIntelligenceReport.php b/lib/Model/DeviceIntelligenceReport.php index 9726096..2da609d 100644 --- a/lib/Model/DeviceIntelligenceReport.php +++ b/lib/Model/DeviceIntelligenceReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Document.php b/lib/Model/Document.php index bf7457d..e0e86e0 100644 --- a/lib/Model/Document.php +++ b/lib/Model/Document.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdown.php b/lib/Model/DocumentBreakdown.php index 681d46c..9f96f84 100644 --- a/lib/Model/DocumentBreakdown.php +++ b/lib/Model/DocumentBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownAgeValidation.php b/lib/Model/DocumentBreakdownAgeValidation.php index 8cbfcf8..5fc6bc5 100644 --- a/lib/Model/DocumentBreakdownAgeValidation.php +++ b/lib/Model/DocumentBreakdownAgeValidation.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownAgeValidationBreakdown.php b/lib/Model/DocumentBreakdownAgeValidationBreakdown.php index 579b25d..2bd211b 100644 --- a/lib/Model/DocumentBreakdownAgeValidationBreakdown.php +++ b/lib/Model/DocumentBreakdownAgeValidationBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownCompromisedDocument.php b/lib/Model/DocumentBreakdownCompromisedDocument.php index dbba79c..1306715 100644 --- a/lib/Model/DocumentBreakdownCompromisedDocument.php +++ b/lib/Model/DocumentBreakdownCompromisedDocument.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownCompromisedDocumentBreakdown.php b/lib/Model/DocumentBreakdownCompromisedDocumentBreakdown.php index 978effc..b65c845 100644 --- a/lib/Model/DocumentBreakdownCompromisedDocumentBreakdown.php +++ b/lib/Model/DocumentBreakdownCompromisedDocumentBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataComparison.php b/lib/Model/DocumentBreakdownDataComparison.php index 54bb404..f4c5de1 100644 --- a/lib/Model/DocumentBreakdownDataComparison.php +++ b/lib/Model/DocumentBreakdownDataComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataComparisonBreakdown.php b/lib/Model/DocumentBreakdownDataComparisonBreakdown.php index a4978ad..733e945 100644 --- a/lib/Model/DocumentBreakdownDataComparisonBreakdown.php +++ b/lib/Model/DocumentBreakdownDataComparisonBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataComparisonBreakdownIssuingCountry.php b/lib/Model/DocumentBreakdownDataComparisonBreakdownIssuingCountry.php index 4d5b9f1..25d6155 100644 --- a/lib/Model/DocumentBreakdownDataComparisonBreakdownIssuingCountry.php +++ b/lib/Model/DocumentBreakdownDataComparisonBreakdownIssuingCountry.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataConsistency.php b/lib/Model/DocumentBreakdownDataConsistency.php index 202d384..3e884ae 100644 --- a/lib/Model/DocumentBreakdownDataConsistency.php +++ b/lib/Model/DocumentBreakdownDataConsistency.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataConsistencyBreakdown.php b/lib/Model/DocumentBreakdownDataConsistencyBreakdown.php index 0644205..70a0823 100644 --- a/lib/Model/DocumentBreakdownDataConsistencyBreakdown.php +++ b/lib/Model/DocumentBreakdownDataConsistencyBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataValidation.php b/lib/Model/DocumentBreakdownDataValidation.php index a8846fb..4561ac1 100644 --- a/lib/Model/DocumentBreakdownDataValidation.php +++ b/lib/Model/DocumentBreakdownDataValidation.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataValidationBreakdown.php b/lib/Model/DocumentBreakdownDataValidationBreakdown.php index 610df1d..306619a 100644 --- a/lib/Model/DocumentBreakdownDataValidationBreakdown.php +++ b/lib/Model/DocumentBreakdownDataValidationBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataValidationBreakdownDocumentExpiration.php b/lib/Model/DocumentBreakdownDataValidationBreakdownDocumentExpiration.php index 4e7d792..6be77b9 100644 --- a/lib/Model/DocumentBreakdownDataValidationBreakdownDocumentExpiration.php +++ b/lib/Model/DocumentBreakdownDataValidationBreakdownDocumentExpiration.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownDataValidationBreakdownExpiryDate.php b/lib/Model/DocumentBreakdownDataValidationBreakdownExpiryDate.php index 0ee940e..ad45cca 100644 --- a/lib/Model/DocumentBreakdownDataValidationBreakdownExpiryDate.php +++ b/lib/Model/DocumentBreakdownDataValidationBreakdownExpiryDate.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownImageIntegrity.php b/lib/Model/DocumentBreakdownImageIntegrity.php index c7cb937..ac98c3b 100644 --- a/lib/Model/DocumentBreakdownImageIntegrity.php +++ b/lib/Model/DocumentBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownImageIntegrityBreakdown.php b/lib/Model/DocumentBreakdownImageIntegrityBreakdown.php index 896c11c..8a0a024 100644 --- a/lib/Model/DocumentBreakdownImageIntegrityBreakdown.php +++ b/lib/Model/DocumentBreakdownImageIntegrityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownImageIntegrityBreakdownColourPicture.php b/lib/Model/DocumentBreakdownImageIntegrityBreakdownColourPicture.php index eea3f63..45c6f3a 100644 --- a/lib/Model/DocumentBreakdownImageIntegrityBreakdownColourPicture.php +++ b/lib/Model/DocumentBreakdownImageIntegrityBreakdownColourPicture.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownImageIntegrityBreakdownConclusiveDocumentQuality.php b/lib/Model/DocumentBreakdownImageIntegrityBreakdownConclusiveDocumentQuality.php index eebb86a..6327dfd 100644 --- a/lib/Model/DocumentBreakdownImageIntegrityBreakdownConclusiveDocumentQuality.php +++ b/lib/Model/DocumentBreakdownImageIntegrityBreakdownConclusiveDocumentQuality.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownImageIntegrityBreakdownImageQuality.php b/lib/Model/DocumentBreakdownImageIntegrityBreakdownImageQuality.php index ab82347..9a41a34 100644 --- a/lib/Model/DocumentBreakdownImageIntegrityBreakdownImageQuality.php +++ b/lib/Model/DocumentBreakdownImageIntegrityBreakdownImageQuality.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownImageIntegrityBreakdownSupportedDocument.php b/lib/Model/DocumentBreakdownImageIntegrityBreakdownSupportedDocument.php index a6f0a51..71bcd5e 100644 --- a/lib/Model/DocumentBreakdownImageIntegrityBreakdownSupportedDocument.php +++ b/lib/Model/DocumentBreakdownImageIntegrityBreakdownSupportedDocument.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownIssuingAuthority.php b/lib/Model/DocumentBreakdownIssuingAuthority.php index 283bcd2..bb2e9bd 100644 --- a/lib/Model/DocumentBreakdownIssuingAuthority.php +++ b/lib/Model/DocumentBreakdownIssuingAuthority.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownIssuingAuthorityBreakdown.php b/lib/Model/DocumentBreakdownIssuingAuthorityBreakdown.php index 5090e12..1ec235b 100644 --- a/lib/Model/DocumentBreakdownIssuingAuthorityBreakdown.php +++ b/lib/Model/DocumentBreakdownIssuingAuthorityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcActiveAuthentication.php b/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcActiveAuthentication.php index 3f6ebaa..e60176c 100644 --- a/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcActiveAuthentication.php +++ b/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcActiveAuthentication.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcPassiveAuthentication.php b/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcPassiveAuthentication.php index 4163949..bd2930c 100644 --- a/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcPassiveAuthentication.php +++ b/lib/Model/DocumentBreakdownIssuingAuthorityBreakdownNfcPassiveAuthentication.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownPoliceRecord.php b/lib/Model/DocumentBreakdownPoliceRecord.php index 1c80fcd..96e0b6f 100644 --- a/lib/Model/DocumentBreakdownPoliceRecord.php +++ b/lib/Model/DocumentBreakdownPoliceRecord.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticity.php b/lib/Model/DocumentBreakdownVisualAuthenticity.php index 0f16516..d925991 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticity.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdown.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdown.php index 49ba41a..c8e5f50 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdown.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownDigitalTampering.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownDigitalTampering.php index 6cdf8b9..9a3deef 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownDigitalTampering.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownDigitalTampering.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFaceDetection.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFaceDetection.php index 70b07be..7e98ddb 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFaceDetection.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFaceDetection.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFonts.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFonts.php index 39832e2..b547212 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFonts.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownFonts.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOriginalDocumentPresent.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOriginalDocumentPresent.php index 27ade10..3e94761 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOriginalDocumentPresent.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOriginalDocumentPresent.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOther.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOther.php index f8efda1..6d8d074 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOther.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownOther.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownPictureFaceIntegrity.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownPictureFaceIntegrity.php index 480e247..a903f77 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownPictureFaceIntegrity.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownPictureFaceIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownSecurityFeatures.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownSecurityFeatures.php index f537fa9..0e9e253 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownSecurityFeatures.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownSecurityFeatures.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownTemplate.php b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownTemplate.php index b78754c..9540445 100644 --- a/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownTemplate.php +++ b/lib/Model/DocumentBreakdownVisualAuthenticityBreakdownTemplate.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentCDQReasons.php b/lib/Model/DocumentCDQReasons.php index 332ec2a..3bbcb22 100644 --- a/lib/Model/DocumentCDQReasons.php +++ b/lib/Model/DocumentCDQReasons.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentIQReasons.php b/lib/Model/DocumentIQReasons.php index 5ba15f0..4a59fc2 100644 --- a/lib/Model/DocumentIQReasons.php +++ b/lib/Model/DocumentIQReasons.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentODPReasons.php b/lib/Model/DocumentODPReasons.php index 79770b5..816d4c0 100644 --- a/lib/Model/DocumentODPReasons.php +++ b/lib/Model/DocumentODPReasons.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentProperties.php b/lib/Model/DocumentProperties.php index 27535b6..bf33c47 100644 --- a/lib/Model/DocumentProperties.php +++ b/lib/Model/DocumentProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesAddressLines.php b/lib/Model/DocumentPropertiesAddressLines.php index b3460a8..44e5b82 100644 --- a/lib/Model/DocumentPropertiesAddressLines.php +++ b/lib/Model/DocumentPropertiesAddressLines.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesBarcodeInner.php b/lib/Model/DocumentPropertiesBarcodeInner.php index 56a8bdc..decdfeb 100644 --- a/lib/Model/DocumentPropertiesBarcodeInner.php +++ b/lib/Model/DocumentPropertiesBarcodeInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesDocumentClassification.php b/lib/Model/DocumentPropertiesDocumentClassification.php index 3735577..e92fa12 100644 --- a/lib/Model/DocumentPropertiesDocumentClassification.php +++ b/lib/Model/DocumentPropertiesDocumentClassification.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesDocumentNumbersInner.php b/lib/Model/DocumentPropertiesDocumentNumbersInner.php index 2753ade..3105fe9 100644 --- a/lib/Model/DocumentPropertiesDocumentNumbersInner.php +++ b/lib/Model/DocumentPropertiesDocumentNumbersInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesDrivingLicenceInformation.php b/lib/Model/DocumentPropertiesDrivingLicenceInformation.php index 5c66f2d..0123454 100644 --- a/lib/Model/DocumentPropertiesDrivingLicenceInformation.php +++ b/lib/Model/DocumentPropertiesDrivingLicenceInformation.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesExtractedData.php b/lib/Model/DocumentPropertiesExtractedData.php index 07ce708..029c663 100644 --- a/lib/Model/DocumentPropertiesExtractedData.php +++ b/lib/Model/DocumentPropertiesExtractedData.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentPropertiesNfc.php b/lib/Model/DocumentPropertiesNfc.php index 5687e42..483dc39 100644 --- a/lib/Model/DocumentPropertiesNfc.php +++ b/lib/Model/DocumentPropertiesNfc.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentReport.php b/lib/Model/DocumentReport.php index feefd78..6f3e304 100644 --- a/lib/Model/DocumentReport.php +++ b/lib/Model/DocumentReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentResponse.php b/lib/Model/DocumentResponse.php index 3140ea1..7a39715 100644 --- a/lib/Model/DocumentResponse.php +++ b/lib/Model/DocumentResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentShared.php b/lib/Model/DocumentShared.php index e086c18..a7b96f3 100644 --- a/lib/Model/DocumentShared.php +++ b/lib/Model/DocumentShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentTypes.php b/lib/Model/DocumentTypes.php index 238cb0f..507a178 100644 --- a/lib/Model/DocumentTypes.php +++ b/lib/Model/DocumentTypes.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentVideoReport.php b/lib/Model/DocumentVideoReport.php index c64c297..58fac7e 100644 --- a/lib/Model/DocumentVideoReport.php +++ b/lib/Model/DocumentVideoReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentVideoWithAddressInformationReport.php b/lib/Model/DocumentVideoWithAddressInformationReport.php index 63b99d7..67f8037 100644 --- a/lib/Model/DocumentVideoWithAddressInformationReport.php +++ b/lib/Model/DocumentVideoWithAddressInformationReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentWithAddressInformationReport.php b/lib/Model/DocumentWithAddressInformationReport.php index 9fae9a8..3a6a9e2 100644 --- a/lib/Model/DocumentWithAddressInformationReport.php +++ b/lib/Model/DocumentWithAddressInformationReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentWithDriverVerificationReport.php b/lib/Model/DocumentWithDriverVerificationReport.php index 2517601..c57027a 100644 --- a/lib/Model/DocumentWithDriverVerificationReport.php +++ b/lib/Model/DocumentWithDriverVerificationReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentWithDriverVerificationReportAllOfProperties.php b/lib/Model/DocumentWithDriverVerificationReportAllOfProperties.php index 87a996e..a2ffb25 100644 --- a/lib/Model/DocumentWithDriverVerificationReportAllOfProperties.php +++ b/lib/Model/DocumentWithDriverVerificationReportAllOfProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfPassengerVehicle.php b/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfPassengerVehicle.php index 794e852..07c9ede 100644 --- a/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfPassengerVehicle.php +++ b/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfPassengerVehicle.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfVehicleClassDetailsInner.php b/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfVehicleClassDetailsInner.php index c17fadc..9a1d08f 100644 --- a/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfVehicleClassDetailsInner.php +++ b/lib/Model/DocumentWithDriverVerificationReportAllOfPropertiesAllOfVehicleClassDetailsInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentWithDrivingLicenceInformationReport.php b/lib/Model/DocumentWithDrivingLicenceInformationReport.php index 081a667..605907a 100644 --- a/lib/Model/DocumentWithDrivingLicenceInformationReport.php +++ b/lib/Model/DocumentWithDrivingLicenceInformationReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/DocumentsList.php b/lib/Model/DocumentsList.php index b0bb1ce..96f91cc 100644 --- a/lib/Model/DocumentsList.php +++ b/lib/Model/DocumentsList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Error.php b/lib/Model/Error.php index 4068783..259b88d 100644 --- a/lib/Model/Error.php +++ b/lib/Model/Error.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Error1.php b/lib/Model/Error1.php index ec267e1..ecee1a9 100644 --- a/lib/Model/Error1.php +++ b/lib/Model/Error1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ErrorProperties.php b/lib/Model/ErrorProperties.php index 04081fe..c0d2056 100644 --- a/lib/Model/ErrorProperties.php +++ b/lib/Model/ErrorProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ErrorProperties1.php b/lib/Model/ErrorProperties1.php index 2d9dec4..e047940 100644 --- a/lib/Model/ErrorProperties1.php +++ b/lib/Model/ErrorProperties1.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ExtractRequest.php b/lib/Model/ExtractRequest.php index e6c96a1..b05b887 100644 --- a/lib/Model/ExtractRequest.php +++ b/lib/Model/ExtractRequest.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Extraction.php b/lib/Model/Extraction.php index 6a8ecad..f8f07df 100644 --- a/lib/Model/Extraction.php +++ b/lib/Model/Extraction.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ExtractionDocumentClassification.php b/lib/Model/ExtractionDocumentClassification.php index 0720a07..261cd64 100644 --- a/lib/Model/ExtractionDocumentClassification.php +++ b/lib/Model/ExtractionDocumentClassification.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ExtractionExtractedData.php b/lib/Model/ExtractionExtractedData.php index 21f6bb5..12d4b12 100644 --- a/lib/Model/ExtractionExtractedData.php +++ b/lib/Model/ExtractionExtractedData.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdown.php b/lib/Model/FacialSimilarityMotionBreakdown.php index 6cb4445..264dbbc 100644 --- a/lib/Model/FacialSimilarityMotionBreakdown.php +++ b/lib/Model/FacialSimilarityMotionBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownFaceComparison.php b/lib/Model/FacialSimilarityMotionBreakdownFaceComparison.php index d1072cb..52acf07 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownFaceComparison.php +++ b/lib/Model/FacialSimilarityMotionBreakdownFaceComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrity.php b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrity.php index 6492670..faaa569 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrity.php +++ b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdown.php b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdown.php index dea578c..2ecb0a8 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdown.php +++ b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownFaceDetected.php b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownFaceDetected.php index 02e40fc..bfda685 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownFaceDetected.php +++ b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownFaceDetected.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownSourceIntegrity.php b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownSourceIntegrity.php index 2bec936..00a2228 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownSourceIntegrity.php +++ b/lib/Model/FacialSimilarityMotionBreakdownImageIntegrityBreakdownSourceIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticity.php b/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticity.php index 0fac567..1190dd4 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticity.php +++ b/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdown.php b/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdown.php index 50cdc29..74f58bc 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdown.php +++ b/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdownSpoofingDetection.php b/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdownSpoofingDetection.php index e70514d..d8dee3b 100644 --- a/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdownSpoofingDetection.php +++ b/lib/Model/FacialSimilarityMotionBreakdownVisualAuthenticityBreakdownSpoofingDetection.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionProperties.php b/lib/Model/FacialSimilarityMotionProperties.php index 14f1234..6074b34 100644 --- a/lib/Model/FacialSimilarityMotionProperties.php +++ b/lib/Model/FacialSimilarityMotionProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityMotionReport.php b/lib/Model/FacialSimilarityMotionReport.php index 730931c..b8f1d39 100644 --- a/lib/Model/FacialSimilarityMotionReport.php +++ b/lib/Model/FacialSimilarityMotionReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdown.php b/lib/Model/FacialSimilarityPhotoBreakdown.php index 6189356..5f35731 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdown.php +++ b/lib/Model/FacialSimilarityPhotoBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparison.php b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparison.php index 8ef0771..3bab43d 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparison.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdown.php b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdown.php index d4e8d45..aaf69ba 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdown.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatch.php b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatch.php index 839a871..ad74c68 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatch.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatch.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatchProperties.php b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatchProperties.php index b9a10db..c97300c 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatchProperties.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownFaceComparisonBreakdownFaceMatchProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrity.php b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrity.php index 6c26439..3e230f9 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrity.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdown.php b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdown.php index a425ed0..3fb09cd 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdown.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownFaceDetected.php b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownFaceDetected.php index 792a3a7..21db206 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownFaceDetected.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownFaceDetected.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownSourceIntegrity.php b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownSourceIntegrity.php index da78705..dbee983 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownSourceIntegrity.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownImageIntegrityBreakdownSourceIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticity.php b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticity.php index d2cac37..e83e6a2 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticity.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdown.php b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdown.php index ca3210b..21d0d7f 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdown.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php index 75f4a92..3832c3d 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetectionProperties.php b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetectionProperties.php index 3d0f21f..f6f118b 100644 --- a/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetectionProperties.php +++ b/lib/Model/FacialSimilarityPhotoBreakdownVisualAuthenticityBreakdownSpoofingDetectionProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdown.php b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdown.php index 8840f68..aa5d375 100644 --- a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdown.php +++ b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrity.php b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrity.php index 9e40ea1..1119d59 100644 --- a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrity.php +++ b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdown.php b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdown.php index e77667d..fb72318 100644 --- a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdown.php +++ b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdownSourceIntegrity.php b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdownSourceIntegrity.php index 8bee295..650e31c 100644 --- a/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdownSourceIntegrity.php +++ b/lib/Model/FacialSimilarityPhotoFullyAutoBreakdownImageIntegrityBreakdownSourceIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoFullyAutoProperties.php b/lib/Model/FacialSimilarityPhotoFullyAutoProperties.php index f151470..591b6e4 100644 --- a/lib/Model/FacialSimilarityPhotoFullyAutoProperties.php +++ b/lib/Model/FacialSimilarityPhotoFullyAutoProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoFullyAutoReport.php b/lib/Model/FacialSimilarityPhotoFullyAutoReport.php index ff1826e..40c0e21 100644 --- a/lib/Model/FacialSimilarityPhotoFullyAutoReport.php +++ b/lib/Model/FacialSimilarityPhotoFullyAutoReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoProperties.php b/lib/Model/FacialSimilarityPhotoProperties.php index 7f54c45..c446217 100644 --- a/lib/Model/FacialSimilarityPhotoProperties.php +++ b/lib/Model/FacialSimilarityPhotoProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityPhotoReport.php b/lib/Model/FacialSimilarityPhotoReport.php index b6bab32..4be58a6 100644 --- a/lib/Model/FacialSimilarityPhotoReport.php +++ b/lib/Model/FacialSimilarityPhotoReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdown.php b/lib/Model/FacialSimilarityVideoBreakdown.php index 5614d19..2dbccad 100644 --- a/lib/Model/FacialSimilarityVideoBreakdown.php +++ b/lib/Model/FacialSimilarityVideoBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownFaceComparison.php b/lib/Model/FacialSimilarityVideoBreakdownFaceComparison.php index f326424..06d4914 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownFaceComparison.php +++ b/lib/Model/FacialSimilarityVideoBreakdownFaceComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrity.php b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrity.php index d1ba441..35738da 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrity.php +++ b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdown.php b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdown.php index a46850c..fca4b70 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdown.php +++ b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownFaceDetected.php b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownFaceDetected.php index 9ceba37..ca2b86d 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownFaceDetected.php +++ b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownFaceDetected.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownSourceIntegrity.php b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownSourceIntegrity.php index 590e16d..52db98d 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownSourceIntegrity.php +++ b/lib/Model/FacialSimilarityVideoBreakdownImageIntegrityBreakdownSourceIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticity.php b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticity.php index def4a21..7ddf24d 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticity.php +++ b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdown.php b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdown.php index 4bb9bc0..ccc8b4d 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdown.php +++ b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownLivenessDetected.php b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownLivenessDetected.php index 9fee62d..4a91029 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownLivenessDetected.php +++ b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownLivenessDetected.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php index 3eb6b79..0561dcd 100644 --- a/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php +++ b/lib/Model/FacialSimilarityVideoBreakdownVisualAuthenticityBreakdownSpoofingDetection.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoProperties.php b/lib/Model/FacialSimilarityVideoProperties.php index dc0b437..3701c2b 100644 --- a/lib/Model/FacialSimilarityVideoProperties.php +++ b/lib/Model/FacialSimilarityVideoProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/FacialSimilarityVideoReport.php b/lib/Model/FacialSimilarityVideoReport.php index 7b98cff..18f476f 100644 --- a/lib/Model/FacialSimilarityVideoReport.php +++ b/lib/Model/FacialSimilarityVideoReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdNumber.php b/lib/Model/IdNumber.php index 0898491..fc6a812 100644 --- a/lib/Model/IdNumber.php +++ b/lib/Model/IdNumber.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdPhoto.php b/lib/Model/IdPhoto.php index 8f19fdd..2c46ec3 100644 --- a/lib/Model/IdPhoto.php +++ b/lib/Model/IdPhoto.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdPhotoResponse.php b/lib/Model/IdPhotoResponse.php index b247e6b..84c4e1d 100644 --- a/lib/Model/IdPhotoResponse.php +++ b/lib/Model/IdPhotoResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdPhotosList.php b/lib/Model/IdPhotosList.php index 00ba354..1cb13a2 100644 --- a/lib/Model/IdPhotosList.php +++ b/lib/Model/IdPhotosList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdown.php b/lib/Model/IdentityEnhancedBreakdown.php index 67bf93a..492f562 100644 --- a/lib/Model/IdentityEnhancedBreakdown.php +++ b/lib/Model/IdentityEnhancedBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownAddress.php b/lib/Model/IdentityEnhancedBreakdownAddress.php index a41ddf7..4c5f608 100644 --- a/lib/Model/IdentityEnhancedBreakdownAddress.php +++ b/lib/Model/IdentityEnhancedBreakdownAddress.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownAddressBreakdown.php b/lib/Model/IdentityEnhancedBreakdownAddressBreakdown.php index bc061c7..907f5de 100644 --- a/lib/Model/IdentityEnhancedBreakdownAddressBreakdown.php +++ b/lib/Model/IdentityEnhancedBreakdownAddressBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgencies.php b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgencies.php index 0332240..a8d7cc2 100644 --- a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgencies.php +++ b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgencies.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgenciesProperties.php b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgenciesProperties.php index 8e065c0..a579c5b 100644 --- a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgenciesProperties.php +++ b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownCreditAgenciesProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownTelephoneDatabase.php b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownTelephoneDatabase.php index 02a5c92..21337d4 100644 --- a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownTelephoneDatabase.php +++ b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownTelephoneDatabase.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownVotingRegister.php b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownVotingRegister.php index be37847..c5df13b 100644 --- a/lib/Model/IdentityEnhancedBreakdownAddressBreakdownVotingRegister.php +++ b/lib/Model/IdentityEnhancedBreakdownAddressBreakdownVotingRegister.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownDateOfBirth.php b/lib/Model/IdentityEnhancedBreakdownDateOfBirth.php index 7a28209..477c3c6 100644 --- a/lib/Model/IdentityEnhancedBreakdownDateOfBirth.php +++ b/lib/Model/IdentityEnhancedBreakdownDateOfBirth.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdown.php b/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdown.php index 7dd505b..1cc4474 100644 --- a/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdown.php +++ b/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownCreditAgencies.php b/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownCreditAgencies.php index b0b4c58..13387b3 100644 --- a/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownCreditAgencies.php +++ b/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownCreditAgencies.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownVotingRegister.php b/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownVotingRegister.php index 81bb8bb..d965820 100644 --- a/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownVotingRegister.php +++ b/lib/Model/IdentityEnhancedBreakdownDateOfBirthBreakdownVotingRegister.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownMortality.php b/lib/Model/IdentityEnhancedBreakdownMortality.php index d4a90f9..cf6bfb4 100644 --- a/lib/Model/IdentityEnhancedBreakdownMortality.php +++ b/lib/Model/IdentityEnhancedBreakdownMortality.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownSources.php b/lib/Model/IdentityEnhancedBreakdownSources.php index de0a972..4206c5e 100644 --- a/lib/Model/IdentityEnhancedBreakdownSources.php +++ b/lib/Model/IdentityEnhancedBreakdownSources.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownSourcesBreakdown.php b/lib/Model/IdentityEnhancedBreakdownSourcesBreakdown.php index 0c147aa..ee7bc54 100644 --- a/lib/Model/IdentityEnhancedBreakdownSourcesBreakdown.php +++ b/lib/Model/IdentityEnhancedBreakdownSourcesBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSources.php b/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSources.php index 38613b0..91cc78a 100644 --- a/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSources.php +++ b/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSources.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSourcesProperties.php b/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSourcesProperties.php index 82f1911..aedec34 100644 --- a/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSourcesProperties.php +++ b/lib/Model/IdentityEnhancedBreakdownSourcesBreakdownTotalSourcesProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedProperties.php b/lib/Model/IdentityEnhancedProperties.php index acb6366..e4b2596 100644 --- a/lib/Model/IdentityEnhancedProperties.php +++ b/lib/Model/IdentityEnhancedProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedPropertiesMatchedAddressesInner.php b/lib/Model/IdentityEnhancedPropertiesMatchedAddressesInner.php index 2bef7d7..5a7f885 100644 --- a/lib/Model/IdentityEnhancedPropertiesMatchedAddressesInner.php +++ b/lib/Model/IdentityEnhancedPropertiesMatchedAddressesInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IdentityEnhancedReport.php b/lib/Model/IdentityEnhancedReport.php index ce96027..a88c17e 100644 --- a/lib/Model/IdentityEnhancedReport.php +++ b/lib/Model/IdentityEnhancedReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReport.php b/lib/Model/IndiaPanReport.php index 716f23f..06ab9d8 100644 --- a/lib/Model/IndiaPanReport.php +++ b/lib/Model/IndiaPanReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReportAllOfBreakdown.php b/lib/Model/IndiaPanReportAllOfBreakdown.php index e129a74..126a191 100644 --- a/lib/Model/IndiaPanReportAllOfBreakdown.php +++ b/lib/Model/IndiaPanReportAllOfBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReportAllOfBreakdownDevice.php b/lib/Model/IndiaPanReportAllOfBreakdownDevice.php index 4a4cb3c..c9de56d 100644 --- a/lib/Model/IndiaPanReportAllOfBreakdownDevice.php +++ b/lib/Model/IndiaPanReportAllOfBreakdownDevice.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdown.php b/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdown.php index e972de9..57c407f 100644 --- a/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdown.php +++ b/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid.php b/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid.php index 19d8ded..352861d 100644 --- a/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid.php +++ b/lib/Model/IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReportAllOfProperties.php b/lib/Model/IndiaPanReportAllOfProperties.php index 4491569..94b85f7 100644 --- a/lib/Model/IndiaPanReportAllOfProperties.php +++ b/lib/Model/IndiaPanReportAllOfProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/IndiaPanReportAllOfPropertiesDevice.php b/lib/Model/IndiaPanReportAllOfPropertiesDevice.php index 00c17d1..98dbbac 100644 --- a/lib/Model/IndiaPanReportAllOfPropertiesDevice.php +++ b/lib/Model/IndiaPanReportAllOfPropertiesDevice.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/KnownFacesBreakdown.php b/lib/Model/KnownFacesBreakdown.php index 4342a83..413bef8 100644 --- a/lib/Model/KnownFacesBreakdown.php +++ b/lib/Model/KnownFacesBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/KnownFacesBreakdownImageIntegrity.php b/lib/Model/KnownFacesBreakdownImageIntegrity.php index 432a972..7c57cf4 100644 --- a/lib/Model/KnownFacesBreakdownImageIntegrity.php +++ b/lib/Model/KnownFacesBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/KnownFacesBreakdownPreviouslySeenFaces.php b/lib/Model/KnownFacesBreakdownPreviouslySeenFaces.php index 38fb38e..daba537 100644 --- a/lib/Model/KnownFacesBreakdownPreviouslySeenFaces.php +++ b/lib/Model/KnownFacesBreakdownPreviouslySeenFaces.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/KnownFacesProperties.php b/lib/Model/KnownFacesProperties.php index 8cc47ed..1d98c36 100644 --- a/lib/Model/KnownFacesProperties.php +++ b/lib/Model/KnownFacesProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/KnownFacesPropertiesMatchesInner.php b/lib/Model/KnownFacesPropertiesMatchesInner.php index e8ab314..b28a8b9 100644 --- a/lib/Model/KnownFacesPropertiesMatchesInner.php +++ b/lib/Model/KnownFacesPropertiesMatchesInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/KnownFacesReport.php b/lib/Model/KnownFacesReport.php index f95652a..2c2a626 100644 --- a/lib/Model/KnownFacesReport.php +++ b/lib/Model/KnownFacesReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LivePhoto.php b/lib/Model/LivePhoto.php index 4c2301a..9fe9096 100644 --- a/lib/Model/LivePhoto.php +++ b/lib/Model/LivePhoto.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LivePhotoResponse.php b/lib/Model/LivePhotoResponse.php index 3a090f1..833c617 100644 --- a/lib/Model/LivePhotoResponse.php +++ b/lib/Model/LivePhotoResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LivePhotosList.php b/lib/Model/LivePhotosList.php index ed55bf4..a2a48d0 100644 --- a/lib/Model/LivePhotosList.php +++ b/lib/Model/LivePhotosList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LiveVideo.php b/lib/Model/LiveVideo.php index 68210d9..4d729f8 100644 --- a/lib/Model/LiveVideo.php +++ b/lib/Model/LiveVideo.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LiveVideosList.php b/lib/Model/LiveVideosList.php index 7998056..4a670a1 100644 --- a/lib/Model/LiveVideosList.php +++ b/lib/Model/LiveVideosList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Location.php b/lib/Model/Location.php index 146bf8b..de4a40f 100644 --- a/lib/Model/Location.php +++ b/lib/Model/Location.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LocationBuilder.php b/lib/Model/LocationBuilder.php index d717d3f..d498877 100644 --- a/lib/Model/LocationBuilder.php +++ b/lib/Model/LocationBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/LocationShared.php b/lib/Model/LocationShared.php index 2eb0c54..6675c89 100644 --- a/lib/Model/LocationShared.php +++ b/lib/Model/LocationShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ModelInterface.php b/lib/Model/ModelInterface.php index 61c4b24..5dd5bfa 100644 --- a/lib/Model/ModelInterface.php +++ b/lib/Model/ModelInterface.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/MotionCapture.php b/lib/Model/MotionCapture.php index 5696c86..5080274 100644 --- a/lib/Model/MotionCapture.php +++ b/lib/Model/MotionCapture.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/MotionCapturesList.php b/lib/Model/MotionCapturesList.php index 2dc569c..2ed4825 100644 --- a/lib/Model/MotionCapturesList.php +++ b/lib/Model/MotionCapturesList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/PhotoAutoReasons.php b/lib/Model/PhotoAutoReasons.php index 879e42d..0b7c124 100644 --- a/lib/Model/PhotoAutoReasons.php +++ b/lib/Model/PhotoAutoReasons.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/PhotoReasons.php b/lib/Model/PhotoReasons.php index 336ca1e..738ae06 100644 --- a/lib/Model/PhotoReasons.php +++ b/lib/Model/PhotoReasons.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdown.php b/lib/Model/ProofOfAddressBreakdown.php index d1428a1..84d969a 100644 --- a/lib/Model/ProofOfAddressBreakdown.php +++ b/lib/Model/ProofOfAddressBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdownDataComparison.php b/lib/Model/ProofOfAddressBreakdownDataComparison.php index a53f353..05e125c 100644 --- a/lib/Model/ProofOfAddressBreakdownDataComparison.php +++ b/lib/Model/ProofOfAddressBreakdownDataComparison.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdownDataComparisonBreakdown.php b/lib/Model/ProofOfAddressBreakdownDataComparisonBreakdown.php index 40d8d0d..fd8c70c 100644 --- a/lib/Model/ProofOfAddressBreakdownDataComparisonBreakdown.php +++ b/lib/Model/ProofOfAddressBreakdownDataComparisonBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdownDocumentClassification.php b/lib/Model/ProofOfAddressBreakdownDocumentClassification.php index f61c8bb..94e7acc 100644 --- a/lib/Model/ProofOfAddressBreakdownDocumentClassification.php +++ b/lib/Model/ProofOfAddressBreakdownDocumentClassification.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdownDocumentClassificationBreakdown.php b/lib/Model/ProofOfAddressBreakdownDocumentClassificationBreakdown.php index 5859bd8..8802d71 100644 --- a/lib/Model/ProofOfAddressBreakdownDocumentClassificationBreakdown.php +++ b/lib/Model/ProofOfAddressBreakdownDocumentClassificationBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdownImageIntegrity.php b/lib/Model/ProofOfAddressBreakdownImageIntegrity.php index 3b7cec9..a93be98 100644 --- a/lib/Model/ProofOfAddressBreakdownImageIntegrity.php +++ b/lib/Model/ProofOfAddressBreakdownImageIntegrity.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressBreakdownImageIntegrityBreakdown.php b/lib/Model/ProofOfAddressBreakdownImageIntegrityBreakdown.php index 887ed78..ea09334 100644 --- a/lib/Model/ProofOfAddressBreakdownImageIntegrityBreakdown.php +++ b/lib/Model/ProofOfAddressBreakdownImageIntegrityBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressProperties.php b/lib/Model/ProofOfAddressProperties.php index 9c07c0a..4ec1f9f 100644 --- a/lib/Model/ProofOfAddressProperties.php +++ b/lib/Model/ProofOfAddressProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ProofOfAddressReport.php b/lib/Model/ProofOfAddressReport.php index c9ddcb1..c66c48b 100644 --- a/lib/Model/ProofOfAddressReport.php +++ b/lib/Model/ProofOfAddressReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/RepeatAttemptsList.php b/lib/Model/RepeatAttemptsList.php index 473948d..198d119 100644 --- a/lib/Model/RepeatAttemptsList.php +++ b/lib/Model/RepeatAttemptsList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/RepeatAttemptsListRepeatAttemptsInner.php b/lib/Model/RepeatAttemptsListRepeatAttemptsInner.php index 7846396..8a5f053 100644 --- a/lib/Model/RepeatAttemptsListRepeatAttemptsInner.php +++ b/lib/Model/RepeatAttemptsListRepeatAttemptsInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Report.php b/lib/Model/Report.php index 143bee0..d08ee0b 100644 --- a/lib/Model/Report.php +++ b/lib/Model/Report.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportDocument.php b/lib/Model/ReportDocument.php index 61e2dc8..1fd8ea1 100644 --- a/lib/Model/ReportDocument.php +++ b/lib/Model/ReportDocument.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportName.php b/lib/Model/ReportName.php index 722eada..1f1f86e 100644 --- a/lib/Model/ReportName.php +++ b/lib/Model/ReportName.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportResult.php b/lib/Model/ReportResult.php index 74abab5..8ba2002 100644 --- a/lib/Model/ReportResult.php +++ b/lib/Model/ReportResult.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportShared.php b/lib/Model/ReportShared.php index 59117ef..681c5f9 100644 --- a/lib/Model/ReportShared.php +++ b/lib/Model/ReportShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportStatus.php b/lib/Model/ReportStatus.php index 9dfeeb0..12606c4 100644 --- a/lib/Model/ReportStatus.php +++ b/lib/Model/ReportStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportSubResult.php b/lib/Model/ReportSubResult.php index 9c2d193..093853c 100644 --- a/lib/Model/ReportSubResult.php +++ b/lib/Model/ReportSubResult.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ReportsList.php b/lib/Model/ReportsList.php index b07e360..1c56aaf 100644 --- a/lib/Model/ReportsList.php +++ b/lib/Model/ReportsList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/ResultsFeedback.php b/lib/Model/ResultsFeedback.php index 591af8d..24a0629 100644 --- a/lib/Model/ResultsFeedback.php +++ b/lib/Model/ResultsFeedback.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/SdkToken.php b/lib/Model/SdkToken.php index 9cf1065..214bb79 100644 --- a/lib/Model/SdkToken.php +++ b/lib/Model/SdkToken.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/SdkTokenBuilder.php b/lib/Model/SdkTokenBuilder.php index 98f3792..93705de 100644 --- a/lib/Model/SdkTokenBuilder.php +++ b/lib/Model/SdkTokenBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/SdkTokenRequest.php b/lib/Model/SdkTokenRequest.php index cb7af56..47903a7 100644 --- a/lib/Model/SdkTokenRequest.php +++ b/lib/Model/SdkTokenRequest.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/SdkTokenResponse.php b/lib/Model/SdkTokenResponse.php index f010620..53b6094 100644 --- a/lib/Model/SdkTokenResponse.php +++ b/lib/Model/SdkTokenResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Task.php b/lib/Model/Task.php index ce828c0..a8ea9e5 100644 --- a/lib/Model/Task.php +++ b/lib/Model/Task.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/TaskItem.php b/lib/Model/TaskItem.php index 00b9594..442fd2d 100644 --- a/lib/Model/TaskItem.php +++ b/lib/Model/TaskItem.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/TimelineFileReference.php b/lib/Model/TimelineFileReference.php index 8bc89e5..601902e 100644 --- a/lib/Model/TimelineFileReference.php +++ b/lib/Model/TimelineFileReference.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdown.php b/lib/Model/UsDrivingLicenceBreakdown.php index addcf80..7af9fb4 100644 --- a/lib/Model/UsDrivingLicenceBreakdown.php +++ b/lib/Model/UsDrivingLicenceBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdownAddress.php b/lib/Model/UsDrivingLicenceBreakdownAddress.php index 317a6bd..95abdab 100644 --- a/lib/Model/UsDrivingLicenceBreakdownAddress.php +++ b/lib/Model/UsDrivingLicenceBreakdownAddress.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdownAddressBreakdown.php b/lib/Model/UsDrivingLicenceBreakdownAddressBreakdown.php index ebaa2b4..ec357f9 100644 --- a/lib/Model/UsDrivingLicenceBreakdownAddressBreakdown.php +++ b/lib/Model/UsDrivingLicenceBreakdownAddressBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdownDocument.php b/lib/Model/UsDrivingLicenceBreakdownDocument.php index cf8a530..1c92949 100644 --- a/lib/Model/UsDrivingLicenceBreakdownDocument.php +++ b/lib/Model/UsDrivingLicenceBreakdownDocument.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdownDocumentBreakdown.php b/lib/Model/UsDrivingLicenceBreakdownDocumentBreakdown.php index 37866d6..26bda60 100644 --- a/lib/Model/UsDrivingLicenceBreakdownDocumentBreakdown.php +++ b/lib/Model/UsDrivingLicenceBreakdownDocumentBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdownPersonal.php b/lib/Model/UsDrivingLicenceBreakdownPersonal.php index 5c363df..b879bcf 100644 --- a/lib/Model/UsDrivingLicenceBreakdownPersonal.php +++ b/lib/Model/UsDrivingLicenceBreakdownPersonal.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBreakdownPersonalBreakdown.php b/lib/Model/UsDrivingLicenceBreakdownPersonalBreakdown.php index c3203db..cdb0d8e 100644 --- a/lib/Model/UsDrivingLicenceBreakdownPersonalBreakdown.php +++ b/lib/Model/UsDrivingLicenceBreakdownPersonalBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceBuilder.php b/lib/Model/UsDrivingLicenceBuilder.php index d710ebd..a8fa177 100644 --- a/lib/Model/UsDrivingLicenceBuilder.php +++ b/lib/Model/UsDrivingLicenceBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceReport.php b/lib/Model/UsDrivingLicenceReport.php index 29a2354..b70c564 100644 --- a/lib/Model/UsDrivingLicenceReport.php +++ b/lib/Model/UsDrivingLicenceReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/UsDrivingLicenceShared.php b/lib/Model/UsDrivingLicenceShared.php index a2b067d..db8afae 100644 --- a/lib/Model/UsDrivingLicenceShared.php +++ b/lib/Model/UsDrivingLicenceShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/VideoReasons.php b/lib/Model/VideoReasons.php index 717ac56..6cce1ff 100644 --- a/lib/Model/VideoReasons.php +++ b/lib/Model/VideoReasons.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlBreakdown.php b/lib/Model/WatchlistAmlBreakdown.php index 22915d9..fc1231e 100644 --- a/lib/Model/WatchlistAmlBreakdown.php +++ b/lib/Model/WatchlistAmlBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlBreakdownAdverseMedia.php b/lib/Model/WatchlistAmlBreakdownAdverseMedia.php index f937caf..fad2dd3 100644 --- a/lib/Model/WatchlistAmlBreakdownAdverseMedia.php +++ b/lib/Model/WatchlistAmlBreakdownAdverseMedia.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlBreakdownLegalAndRegulatoryWarnings.php b/lib/Model/WatchlistAmlBreakdownLegalAndRegulatoryWarnings.php index 277f9ea..c95ea51 100644 --- a/lib/Model/WatchlistAmlBreakdownLegalAndRegulatoryWarnings.php +++ b/lib/Model/WatchlistAmlBreakdownLegalAndRegulatoryWarnings.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlBreakdownPoliticallyExposedPerson.php b/lib/Model/WatchlistAmlBreakdownPoliticallyExposedPerson.php index cb43538..41f29ec 100644 --- a/lib/Model/WatchlistAmlBreakdownPoliticallyExposedPerson.php +++ b/lib/Model/WatchlistAmlBreakdownPoliticallyExposedPerson.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlBreakdownSanction.php b/lib/Model/WatchlistAmlBreakdownSanction.php index f6db4ea..f7bb601 100644 --- a/lib/Model/WatchlistAmlBreakdownSanction.php +++ b/lib/Model/WatchlistAmlBreakdownSanction.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlProperties.php b/lib/Model/WatchlistAmlProperties.php index b34a02b..9d0fac3 100644 --- a/lib/Model/WatchlistAmlProperties.php +++ b/lib/Model/WatchlistAmlProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistAmlReport.php b/lib/Model/WatchlistAmlReport.php index 964212b..090142f 100644 --- a/lib/Model/WatchlistAmlReport.php +++ b/lib/Model/WatchlistAmlReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedBreakdown.php b/lib/Model/WatchlistEnhancedBreakdown.php index 265cb0c..91b48f0 100644 --- a/lib/Model/WatchlistEnhancedBreakdown.php +++ b/lib/Model/WatchlistEnhancedBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedProperties.php b/lib/Model/WatchlistEnhancedProperties.php index 9200305..0a5e3ce 100644 --- a/lib/Model/WatchlistEnhancedProperties.php +++ b/lib/Model/WatchlistEnhancedProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInner.php index c36f50b..c94ba52 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAddressInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAddressInner.php index cd683a8..89b3a78 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAddressInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAddressInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAliasInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAliasInner.php index 8479a14..b393b76 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAliasInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAliasInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAssociateInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAssociateInner.php index 8ef122f..49ff25b 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAssociateInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAssociateInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAttributeInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAttributeInner.php index 4a164cc..1e406df 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAttributeInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerAttributeInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInner.php index f4cc31c..ce6fbef 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInnerSource.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInnerSource.php index 790b724..ebca7c7 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInnerSource.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerEventInnerSource.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerSourceInner.php b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerSourceInner.php index 98e91d4..eaefda9 100644 --- a/lib/Model/WatchlistEnhancedPropertiesRecordsInnerSourceInner.php +++ b/lib/Model/WatchlistEnhancedPropertiesRecordsInnerSourceInner.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistEnhancedReport.php b/lib/Model/WatchlistEnhancedReport.php index 2e8c420..a2778b2 100644 --- a/lib/Model/WatchlistEnhancedReport.php +++ b/lib/Model/WatchlistEnhancedReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitor.php b/lib/Model/WatchlistMonitor.php index 77733b4..2c1f396 100644 --- a/lib/Model/WatchlistMonitor.php +++ b/lib/Model/WatchlistMonitor.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorBuilder.php b/lib/Model/WatchlistMonitorBuilder.php index 988d317..8cdb732 100644 --- a/lib/Model/WatchlistMonitorBuilder.php +++ b/lib/Model/WatchlistMonitorBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorMatch.php b/lib/Model/WatchlistMonitorMatch.php index bce5f90..ee3182a 100644 --- a/lib/Model/WatchlistMonitorMatch.php +++ b/lib/Model/WatchlistMonitorMatch.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorMatchesList.php b/lib/Model/WatchlistMonitorMatchesList.php index 65031f7..1a33a4b 100644 --- a/lib/Model/WatchlistMonitorMatchesList.php +++ b/lib/Model/WatchlistMonitorMatchesList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorMatchesUpdater.php b/lib/Model/WatchlistMonitorMatchesUpdater.php index b66d727..380f4a7 100644 --- a/lib/Model/WatchlistMonitorMatchesUpdater.php +++ b/lib/Model/WatchlistMonitorMatchesUpdater.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorResponse.php b/lib/Model/WatchlistMonitorResponse.php index e4d760f..5e6bb4e 100644 --- a/lib/Model/WatchlistMonitorResponse.php +++ b/lib/Model/WatchlistMonitorResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorShared.php b/lib/Model/WatchlistMonitorShared.php index 068fc21..1ba880d 100644 --- a/lib/Model/WatchlistMonitorShared.php +++ b/lib/Model/WatchlistMonitorShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistMonitorsList.php b/lib/Model/WatchlistMonitorsList.php index 531bfd3..c5a996a 100644 --- a/lib/Model/WatchlistMonitorsList.php +++ b/lib/Model/WatchlistMonitorsList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistPepsOnlyReport.php b/lib/Model/WatchlistPepsOnlyReport.php index b6ab374..bd44c7f 100644 --- a/lib/Model/WatchlistPepsOnlyReport.php +++ b/lib/Model/WatchlistPepsOnlyReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistSanctionsOnlyReport.php b/lib/Model/WatchlistSanctionsOnlyReport.php index 17e8063..2e1cac5 100644 --- a/lib/Model/WatchlistSanctionsOnlyReport.php +++ b/lib/Model/WatchlistSanctionsOnlyReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistStandardBreakdown.php b/lib/Model/WatchlistStandardBreakdown.php index 8398f5a..d647798 100644 --- a/lib/Model/WatchlistStandardBreakdown.php +++ b/lib/Model/WatchlistStandardBreakdown.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistStandardProperties.php b/lib/Model/WatchlistStandardProperties.php index d93ccff..f3299ae 100644 --- a/lib/Model/WatchlistStandardProperties.php +++ b/lib/Model/WatchlistStandardProperties.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WatchlistStandardReport.php b/lib/Model/WatchlistStandardReport.php index a9ba974..702448e 100644 --- a/lib/Model/WatchlistStandardReport.php +++ b/lib/Model/WatchlistStandardReport.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/Webhook.php b/lib/Model/Webhook.php index a036d86..b9901b0 100644 --- a/lib/Model/Webhook.php +++ b/lib/Model/Webhook.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookBuilder.php b/lib/Model/WebhookBuilder.php index 9468ada..e439a9f 100644 --- a/lib/Model/WebhookBuilder.php +++ b/lib/Model/WebhookBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookCreate.php b/lib/Model/WebhookCreate.php index 84c1a3c..70596c2 100644 --- a/lib/Model/WebhookCreate.php +++ b/lib/Model/WebhookCreate.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEvent.php b/lib/Model/WebhookEvent.php index 9b41b5d..cf124c9 100644 --- a/lib/Model/WebhookEvent.php +++ b/lib/Model/WebhookEvent.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEventObjectStatus.php b/lib/Model/WebhookEventObjectStatus.php index 528a241..c8e95ef 100644 --- a/lib/Model/WebhookEventObjectStatus.php +++ b/lib/Model/WebhookEventObjectStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEventPayload.php b/lib/Model/WebhookEventPayload.php index e3b3e58..baa1864 100644 --- a/lib/Model/WebhookEventPayload.php +++ b/lib/Model/WebhookEventPayload.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEventPayloadObject.php b/lib/Model/WebhookEventPayloadObject.php index 4e4f3ce..fffd379 100644 --- a/lib/Model/WebhookEventPayloadObject.php +++ b/lib/Model/WebhookEventPayloadObject.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEventPayloadResource.php b/lib/Model/WebhookEventPayloadResource.php index 2f7cb7d..2976ec9 100644 --- a/lib/Model/WebhookEventPayloadResource.php +++ b/lib/Model/WebhookEventPayloadResource.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEventResourceType.php b/lib/Model/WebhookEventResourceType.php index b930f92..3535436 100644 --- a/lib/Model/WebhookEventResourceType.php +++ b/lib/Model/WebhookEventResourceType.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookEventType.php b/lib/Model/WebhookEventType.php index 166f673..5c805bb 100644 --- a/lib/Model/WebhookEventType.php +++ b/lib/Model/WebhookEventType.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookResend.php b/lib/Model/WebhookResend.php index 49ddf97..c45931e 100644 --- a/lib/Model/WebhookResend.php +++ b/lib/Model/WebhookResend.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookResponse.php b/lib/Model/WebhookResponse.php index f401ec0..e0ac0db 100644 --- a/lib/Model/WebhookResponse.php +++ b/lib/Model/WebhookResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookShared.php b/lib/Model/WebhookShared.php index 09927b8..769388b 100644 --- a/lib/Model/WebhookShared.php +++ b/lib/Model/WebhookShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookUpdate.php b/lib/Model/WebhookUpdate.php index 4fcc5fd..529e8fa 100644 --- a/lib/Model/WebhookUpdate.php +++ b/lib/Model/WebhookUpdate.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhookUpdater.php b/lib/Model/WebhookUpdater.php index 6498d53..dba3e39 100644 --- a/lib/Model/WebhookUpdater.php +++ b/lib/Model/WebhookUpdater.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhooksList.php b/lib/Model/WebhooksList.php index e0e57d2..bfa847a 100644 --- a/lib/Model/WebhooksList.php +++ b/lib/Model/WebhooksList.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WebhooksResendItem.php b/lib/Model/WebhooksResendItem.php index df37b50..f208cd3 100644 --- a/lib/Model/WebhooksResendItem.php +++ b/lib/Model/WebhooksResendItem.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRun.php b/lib/Model/WorkflowRun.php index af2a786..aa9b2a9 100644 --- a/lib/Model/WorkflowRun.php +++ b/lib/Model/WorkflowRun.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunBuilder.php b/lib/Model/WorkflowRunBuilder.php index 7c88fc4..93522f2 100644 --- a/lib/Model/WorkflowRunBuilder.php +++ b/lib/Model/WorkflowRunBuilder.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunError.php b/lib/Model/WorkflowRunError.php index 1686899..eb13b4b 100644 --- a/lib/Model/WorkflowRunError.php +++ b/lib/Model/WorkflowRunError.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunLink.php b/lib/Model/WorkflowRunLink.php index 66e77da..0abbb6e 100644 --- a/lib/Model/WorkflowRunLink.php +++ b/lib/Model/WorkflowRunLink.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunRequest.php b/lib/Model/WorkflowRunRequest.php index 5e42766..be30e82 100644 --- a/lib/Model/WorkflowRunRequest.php +++ b/lib/Model/WorkflowRunRequest.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunResponse.php b/lib/Model/WorkflowRunResponse.php index 30187b6..e91ee74 100644 --- a/lib/Model/WorkflowRunResponse.php +++ b/lib/Model/WorkflowRunResponse.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunShared.php b/lib/Model/WorkflowRunShared.php index 561cc36..e8862f4 100644 --- a/lib/Model/WorkflowRunShared.php +++ b/lib/Model/WorkflowRunShared.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/Model/WorkflowRunStatus.php b/lib/Model/WorkflowRunStatus.php index 6cacabe..3b273d4 100644 --- a/lib/Model/WorkflowRunStatus.php +++ b/lib/Model/WorkflowRunStatus.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** diff --git a/lib/ObjectSerializer.php b/lib/ObjectSerializer.php index 13a6f8d..fd70124 100644 --- a/lib/ObjectSerializer.php +++ b/lib/ObjectSerializer.php @@ -17,7 +17,7 @@ * * The version of the OpenAPI document: v3.6 * Generated by: https://openapi-generator.tech - * Generator version: 7.6.0 + * Generator version: 7.9.0 */ /** @@ -194,6 +194,10 @@ private static function isEmptyValue($value, string $openApiType): bool case 'boolean': return !in_array($value, [false, 0], true); + # For string values, '' is considered empty. + case 'string': + return $value === ''; + # For all the other types, any value at this point can be considered empty. default: return true; @@ -265,6 +269,11 @@ public static function toQueryValue( $value = $flattenArray($value, $paramName); + // https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values + if ($openApiType === 'array' && $style === 'deepObject' && $explode) { + return $value; + } + if ($openApiType === 'object' && ($style === 'deepObject' || $explode)) { return $value; }