Google_LookupRequest
The Google Books Importer Google LookupRequest class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DatastoreService.php
- class Google_LookupRequest extends Google_Model {
- protected $__keysType = 'Google_Key';
- protected $__keysDataType = 'array';
- public $keys;
- protected $__readOptionsType = 'Google_ReadOptions';
- protected $__readOptionsDataType = '';
- public $readOptions;
- public function setKeys(/** array(Google_Key) */ $keys) {
- $this->assertIsArray($keys, 'Google_Key', __METHOD__);
- $this->keys = $keys;
- }
- public function getKeys() {
- return $this->keys;
- }
- public function setReadOptions(Google_ReadOptions $readOptions) {
- $this->readOptions = $readOptions;
- }
- public function getReadOptions() {
- return $this->readOptions;
- }
- }