Google_LicenseAssignmentList
The Google Books Importer Google LicenseAssignmentList class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_LicensingService.php
- class Google_LicenseAssignmentList extends Google_Model {
- public $etag;
- protected $__itemsType = 'Google_LicenseAssignment';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $nextPageToken;
- public function setEtag( $etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setItems(/** array(Google_LicenseAssignment) */ $items) {
- $this->assertIsArray($items, 'Google_LicenseAssignment', __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;
- }
- }