You are here

public function ListJobsParameters::__construct in TMGMT Translator Smartling 8.4

Same name and namespace in other branches
  1. 8.3 vendor/smartling/api-sdk-php/src/Jobs/Params/ListJobsParameters.php \Smartling\Jobs\Params\ListJobsParameters::__construct()

File

vendor/smartling/api-sdk-php/src/Jobs/Params/ListJobsParameters.php, line 10

Class

ListJobsParameters

Namespace

Smartling\Jobs\Params

Code

public function __construct($jobName = null, $limit = null, $offset = null) {
  $this
    ->setName($jobName);
  $this
    ->setLimit($limit);
  $this
    ->setOffset($offset);
}