You are here

public function JobsApi::listJobs in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/smartling/api-sdk-php/src/Jobs/JobsApi.php \Smartling\Jobs\JobsApi::listJobs()

Returns a list of jobs.

Parameters

ListJobsParameters $parameters:

Return value

array

Throws

SmartlingApiException

File

vendor/smartling/api-sdk-php/src/Jobs/JobsApi.php, line 144

Class

JobsApi
Class JobsApi

Namespace

Smartling\Jobs

Code

public function listJobs(ListJobsParameters $parameters) {
  $requestData = $this
    ->getDefaultRequestData('query', $parameters
    ->exportToArray());
  return $this
    ->sendRequest('jobs', $requestData, self::HTTP_METHOD_GET);
}