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