Google_OperationsScopedList
The Google Books Importer Google OperationsScopedList class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_ComputeService.php
- class Google_OperationsScopedList extends Google_Model {
- protected $__operationsType = 'Google_Operation';
- protected $__operationsDataType = 'array';
- public $operations;
- protected $__warningType = 'Google_OperationsScopedListWarning';
- protected $__warningDataType = '';
- public $warning;
- public function setOperations(/** array(Google_Operation) */ $operations) {
- $this->assertIsArray($operations, 'Google_Operation', __METHOD__);
- $this->operations = $operations;
- }
- public function getOperations() {
- return $this->operations;
- }
- public function setWarning(Google_OperationsScopedListWarning $warning) {
- $this->warning = $warning;
- }
- public function getWarning() {
- return $this->warning;
- }
- }