Google_OperationList
The Google Books Importer Google OperationList class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_ComputeService.php
- class Google_OperationList extends Google_Model {
- public $id;
- protected $__itemsType = 'Google_Operation';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $nextPageToken;
- public $selfLink;
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setItems(/** array(Google_Operation) */ $items) {
- $this->assertIsArray($items, 'Google_Operation', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNextPageToken( $nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- }