SearchJobsParameters.php in TMGMT Translator Smartling 8.3
File
vendor/smartling/api-sdk-php/src/Jobs/Params/SearchJobsParameters.php
View source
<?php
namespace Smartling\Jobs\Params;
use Smartling\Parameters\BaseParameters;
class SearchJobsParameters extends BaseParameters {
public function setHashCodes(array $hashCodes) {
$this
->set('hashcodes', $hashCodes);
}
public function setFileUris(array $fileUris) {
$this
->set('fileUris', $fileUris);
}
public function setUids(array $uids) {
$this
->set('translationJobUids', $uids);
}
}