Google_Acl
The Google Pagespeed Insights Google Acl class.
Defined (3)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_Acl extends Google_Model {
- public $etag;
- protected $__itemsType = 'Google_AclRule';
- 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_AclRule) */ $items) {
- $this->assertIsArray($items, 'Google_AclRule', __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;
- }
- }
- /google-api/src/contrib/Google_PlusService.php
- class Google_Acl extends Google_Model {
- public $description;
- protected $__itemsType = 'Google_PlusAclentryResource';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setDescription($description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- public function setItems(/** array(Google_PlusAclentryResource) */ $items) {
- $this->assertIsArray($items, 'Google_PlusAclentryResource', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }
- /google-api/src/contrib/Google_OrkutService.php
- class Google_Acl extends Google_Model {
- protected $__itemsType = 'Google_AclItems';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $description;
- public $totalParticipants;
- public function setItems(/** array(Google_AclItems) */ $items) {
- $this->assertIsArray($items, 'Google_AclItems', __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 setDescription($description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- public function setTotalParticipants($totalParticipants) {
- $this->totalParticipants = $totalParticipants;
- }
- public function getTotalParticipants() {
- return $this->totalParticipants;
- }
- }