Google_Job
The Google Books Importer Google Job class.
Defined (2)
The class is defined in the following location(s).
- /src/contrib/Google_BigqueryService.php
- class Google_Job extends Google_Model {
- protected $__configurationType = 'Google_JobConfiguration';
- protected $__configurationDataType = '';
- public $configuration;
- public $etag;
- public $id;
- protected $__jobReferenceType = 'Google_JobReference';
- protected $__jobReferenceDataType = '';
- public $jobReference;
- public $kind;
- public $selfLink;
- protected $__statisticsType = 'Google_JobStatistics';
- protected $__statisticsDataType = '';
- public $statistics;
- protected $__statusType = 'Google_JobStatus';
- protected $__statusDataType = '';
- public $status;
- public function setConfiguration(Google_JobConfiguration $configuration) {
- $this->configuration = $configuration;
- }
- public function getConfiguration() {
- return $this->configuration;
- }
- public function setEtag( $etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setJobReference(Google_JobReference $jobReference) {
- $this->jobReference = $jobReference;
- }
- public function getJobReference() {
- return $this->jobReference;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setStatistics(Google_JobStatistics $statistics) {
- $this->statistics = $statistics;
- }
- public function getStatistics() {
- return $this->statistics;
- }
- public function setStatus(Google_JobStatus $status) {
- $this->status = $status;
- }
- public function getStatus() {
- return $this->status;
- }
- }
- /src/contrib/Google_CoordinateService.php
- class Google_Job extends Google_Model {
- public $id;
- protected $__jobChangeType = 'Google_JobChange';
- protected $__jobChangeDataType = 'array';
- public $jobChange;
- public $kind;
- protected $__stateType = 'Google_JobState';
- protected $__stateDataType = '';
- public $state;
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setJobChange(/** array(Google_JobChange) */ $jobChange) {
- $this->assertIsArray($jobChange, 'Google_JobChange', __METHOD__);
- $this->jobChange = $jobChange;
- }
- public function getJobChange() {
- return $this->jobChange;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setState(Google_JobState $state) {
- $this->state = $state;
- }
- public function getState() {
- return $this->state;
- }
- }