CreateBatchParameters.php in TMGMT Translator Smartling 8.4
File
vendor/smartling/api-sdk-php/src/Batch/Params/CreateBatchParameters.php
View source
<?php
namespace Smartling\Batch\Params;
use Smartling\Parameters\BaseParameters;
class CreateBatchParameters extends BaseParameters {
public function setTranslationJobUid($uid) {
$this
->set('translationJobUid', $uid);
return $this;
}
public function setAuthorize($authorize) {
$this
->set('authorize', (bool) $authorize);
return $this;
}
public function setCallbackUrl($callbackUrl) {
$this
->set('callbackUrl', $callbackUrl);
return $this;
}
}