Google_MutationResult
The Google Books Importer Google MutationResult class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DatastoreService.php
- class Google_MutationResult extends Google_Model {
- public $indexUpdates;
- protected $__insertAutoIdKeysType = 'Google_Key';
- protected $__insertAutoIdKeysDataType = 'array';
- public $insertAutoIdKeys;
- public function setIndexUpdates( $indexUpdates) {
- $this->indexUpdates = $indexUpdates;
- }
- public function getIndexUpdates() {
- return $this->indexUpdates;
- }
- public function setInsertAutoIdKeys(/** array(Google_Key) */ $insertAutoIdKeys) {
- $this->assertIsArray($insertAutoIdKeys, 'Google_Key', __METHOD__);
- $this->insertAutoIdKeys = $insertAutoIdKeys;
- }
- public function getInsertAutoIdKeys() {
- return $this->insertAutoIdKeys;
- }
- }