Google_JobListJobs
The Google Pagespeed Insights Google JobListJobs class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BigqueryService.php
- class Google_JobListJobs extends Google_Model {
- protected $__statusType = 'Google_JobStatus';
- protected $__statusDataType = '';
- public $status;
- public $kind;
- protected $__statisticsType = 'Google_JobStatistics';
- protected $__statisticsDataType = '';
- public $statistics;
- protected $__jobReferenceType = 'Google_JobReference';
- protected $__jobReferenceDataType = '';
- public $jobReference;
- public $state;
- protected $__configurationType = 'Google_JobConfiguration';
- protected $__configurationDataType = '';
- public $configuration;
- public $id;
- protected $__errorResultType = 'Google_ErrorProto';
- protected $__errorResultDataType = '';
- public $errorResult;
- public function setStatus(Google_JobStatus $status) {
- $this->status = $status;
- }
- public function getStatus() {
- return $this->status;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setStatistics(Google_JobStatistics $statistics) {
- $this->statistics = $statistics;
- }
- public function getStatistics() {
- return $this->statistics;
- }
- public function setJobReference(Google_JobReference $jobReference) {
- $this->jobReference = $jobReference;
- }
- public function getJobReference() {
- return $this->jobReference;
- }
- public function setState($state) {
- $this->state = $state;
- }
- public function getState() {
- return $this->state;
- }
- public function setConfiguration(Google_JobConfiguration $configuration) {
- $this->configuration = $configuration;
- }
- public function getConfiguration() {
- return $this->configuration;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setErrorResult(Google_ErrorProto $errorResult) {
- $this->errorResult = $errorResult;
- }
- public function getErrorResult() {
- return $this->errorResult;
- }
- }