/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
deeplcom
/
deepl-php
/
src
/
Upload File
HOME
<?php // Copyright 2022 DeepL SE (https://www.deepl.com) // Use of this source code is governed by an MIT // license that can be found in the LICENSE file. namespace DeepL; /** * Handle to an in-progress document translation. */ class DocumentHandle { /** * @var string ID of associated document request. */ public $documentId; /** * @var string Key of associated document request. */ public $documentKey; public function __construct(string $documentId, string $documentKey) { $this->documentId = $documentId; $this->documentKey = $documentKey; } }