| 1 |
<?php |
| 2 |
/* |
| 3 |
* Copyright 2014 Google Inc. |
| 4 |
* |
| 5 |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 6 |
* use this file except in compliance with the License. You may obtain a copy of |
| 7 |
* the License at |
| 8 |
* |
| 9 |
* http://www.apache.org/licenses/LICENSE-2.0 |
| 10 |
* |
| 11 |
* Unless required by applicable law or agreed to in writing, software |
| 12 |
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 |
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 |
* License for the specific language governing permissions and limitations under |
| 15 |
* the License. |
| 16 |
*/ |
| 17 |
namespace wpCloud\StatelessMedia\Google_Client; |
| 18 |
|
| 19 |
class Google_Service_Storage_ObjectAccessControl extends Google_Model |
| 20 |
{ |
| 21 |
public $bucket; |
| 22 |
public $domain; |
| 23 |
public $email; |
| 24 |
public $entity; |
| 25 |
public $entityId; |
| 26 |
public $etag; |
| 27 |
public $generation; |
| 28 |
public $id; |
| 29 |
public $kind; |
| 30 |
public $object; |
| 31 |
protected $projectTeamType = 'Google_Service_Storage_ObjectAccessControlProjectTeam'; |
| 32 |
protected $projectTeamDataType = ''; |
| 33 |
public $role; |
| 34 |
public $selfLink; |
| 35 |
|
| 36 |
public function setBucket($bucket) |
| 37 |
{ |
| 38 |
$this->bucket = $bucket; |
| 39 |
} |
| 40 |
public function getBucket() |
| 41 |
{ |
| 42 |
return $this->bucket; |
| 43 |
} |
| 44 |
public function setDomain($domain) |
| 45 |
{ |
| 46 |
$this->domain = $domain; |
| 47 |
} |
| 48 |
public function getDomain() |
| 49 |
{ |
| 50 |
return $this->domain; |
| 51 |
} |
| 52 |
public function setEmail($email) |
| 53 |
{ |
| 54 |
$this->email = $email; |
| 55 |
} |
| 56 |
public function getEmail() |
| 57 |
{ |
| 58 |
return $this->email; |
| 59 |
} |
| 60 |
public function setEntity($entity) |
| 61 |
{ |
| 62 |
$this->entity = $entity; |
| 63 |
} |
| 64 |
public function getEntity() |
| 65 |
{ |
| 66 |
return $this->entity; |
| 67 |
} |
| 68 |
public function setEntityId($entityId) |
| 69 |
{ |
| 70 |
$this->entityId = $entityId; |
| 71 |
} |
| 72 |
public function getEntityId() |
| 73 |
{ |
| 74 |
return $this->entityId; |
| 75 |
} |
| 76 |
public function setEtag($etag) |
| 77 |
{ |
| 78 |
$this->etag = $etag; |
| 79 |
} |
| 80 |
public function getEtag() |
| 81 |
{ |
| 82 |
return $this->etag; |
| 83 |
} |
| 84 |
public function setGeneration($generation) |
| 85 |
{ |
| 86 |
$this->generation = $generation; |
| 87 |
} |
| 88 |
public function getGeneration() |
| 89 |
{ |
| 90 |
return $this->generation; |
| 91 |
} |
| 92 |
public function setId($id) |
| 93 |
{ |
| 94 |
$this->id = $id; |
| 95 |
} |
| 96 |
public function getId() |
| 97 |
{ |
| 98 |
return $this->id; |
| 99 |
} |
| 100 |
public function setKind($kind) |
| 101 |
{ |
| 102 |
$this->kind = $kind; |
| 103 |
} |
| 104 |
public function getKind() |
| 105 |
{ |
| 106 |
return $this->kind; |
| 107 |
} |
| 108 |
public function setObject($object) |
| 109 |
{ |
| 110 |
$this->object = $object; |
| 111 |
} |
| 112 |
public function getObject() |
| 113 |
{ |
| 114 |
return $this->object; |
| 115 |
} |
| 116 |
/** |
| 117 |
* @param Google_Service_Storage_ObjectAccessControlProjectTeam |
| 118 |
*/ |
| 119 |
public function setProjectTeam(Google_Service_Storage_ObjectAccessControlProjectTeam $projectTeam) |
| 120 |
{ |
| 121 |
$this->projectTeam = $projectTeam; |
| 122 |
} |
| 123 |
/** |
| 124 |
* @return Google_Service_Storage_ObjectAccessControlProjectTeam |
| 125 |
*/ |
| 126 |
public function getProjectTeam() |
| 127 |
{ |
| 128 |
return $this->projectTeam; |
| 129 |
} |
| 130 |
public function setRole($role) |
| 131 |
{ |
| 132 |
$this->role = $role; |
| 133 |
} |
| 134 |
public function getRole() |
| 135 |
{ |
| 136 |
return $this->role; |
| 137 |
} |
| 138 |
public function setSelfLink($selfLink) |
| 139 |
{ |
| 140 |
$this->selfLink = $selfLink; |
| 141 |
} |
| 142 |
public function getSelfLink() |
| 143 |
{ |
| 144 |
return $this->selfLink; |
| 145 |
} |
| 146 |
} |
| 147 |
|