You are here

public function ListJobsParameters::setOffset 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::setOffset()
1 call to ListJobsParameters::setOffset()
ListJobsParameters::__construct in vendor/smartling/api-sdk-php/src/Jobs/Params/ListJobsParameters.php

File

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

Class

ListJobsParameters

Namespace

Smartling\Jobs\Params

Code

public function setOffset($offset) {
  if (null !== $offset && 0 < (int) $offset) {
    $this
      ->set('offset', (int) $offset);
  }
}