WebDriver\SauceLabs\SauceRest::getJobs PHP Method

getJobs() public method

Get jobs: /rest/v1/:userId/jobs (GET)
public getJobs ( boolean $full = null ) : array
$full boolean
return array
    public function getJobs($full = null)
    {
        $query = http_build_query(array('full' => isset($full) && $full ? 'true' : null));
        return $this->execute('GET', $this->userId . '/jobs' . (strlen($query) ? '?' . $query : ''));
    }