Google_JobStatus
The Google Books Importer Google JobStatus class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_BigqueryService.php
- class Google_JobStatus extends Google_Model {
- protected $__errorResultType = 'Google_ErrorProto';
- protected $__errorResultDataType = '';
- public $errorResult;
- protected $__errorsType = 'Google_ErrorProto';
- protected $__errorsDataType = 'array';
- public $errors;
- public $state;
- public function setErrorResult(Google_ErrorProto $errorResult) {
- $this->errorResult = $errorResult;
- }
- public function getErrorResult() {
- return $this->errorResult;
- }
- public function setErrors(/** array(Google_ErrorProto) */ $errors) {
- $this->assertIsArray($errors, 'Google_ErrorProto', __METHOD__);
- $this->errors = $errors;
- }
- public function getErrors() {
- return $this->errors;
- }
- public function setState( $state) {
- $this->state = $state;
- }
- public function getState() {
- return $this->state;
- }
- }