class CreateBatchParameters in TMGMT Translator Smartling 8.4
Same name and namespace in other branches
- 8.3 vendor/smartling/api-sdk-php/src/Batch/Params/CreateBatchParameters.php \Smartling\Batch\Params\CreateBatchParameters
Class CreateBatchParameters
@package Smartling\Facade\Params
Hierarchy
- class \Smartling\Parameters\BaseParameters implements ParameterInterface
- class \Smartling\Batch\Params\CreateBatchParameters
Expanded class hierarchy of CreateBatchParameters
4 files declare their use of CreateBatchParameters
- batch-example.php in vendor/
smartling/ api-sdk-php/ examples/ batch-example.php - BatchApi.php in vendor/
smartling/ api-sdk-php/ src/ Batch/ BatchApi.php - BatchApiTest.php in vendor/
smartling/ api-sdk-php/ tests/ unit/ BatchApiTest.php - SmartlingApiWrapper.php in src/
Smartling/ SmartlingApiWrapper.php - SmartlingApiWrapper.php.
File
- vendor/
smartling/ api-sdk-php/ src/ Batch/ Params/ CreateBatchParameters.php, line 12
Namespace
Smartling\Batch\ParamsView source
class CreateBatchParameters extends BaseParameters {
/**
* @param $uid
*
* @return $this
*/
public function setTranslationJobUid($uid) {
$this
->set('translationJobUid', $uid);
return $this;
}
/**
* @param $authorize
*
* @return $this
*/
public function setAuthorize($authorize) {
$this
->set('authorize', (bool) $authorize);
return $this;
}
/**
* @param $callbackUrl
*
* @return $this
*/
public function setCallbackUrl($callbackUrl) {
$this
->set('callbackUrl', $callbackUrl);
return $this;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BaseParameters:: |
protected | property | ||
BaseParameters:: |
public | function |
@inheritdoc Overrides ParameterInterface:: |
1 |
BaseParameters:: |
public | function |
@inheritdoc Overrides ParameterInterface:: |
|
CreateBatchParameters:: |
public | function | ||
CreateBatchParameters:: |
public | function | ||
CreateBatchParameters:: |
public | function |