[f9c482b] | 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 |
|
---|
| 18 | namespace Google\Service\Apigee;
|
---|
| 19 |
|
---|
| 20 | class GoogleCloudApigeeV1App extends \Google\Collection
|
---|
| 21 | {
|
---|
| 22 | protected $collection_key = 'scopes';
|
---|
| 23 | protected $apiProductsType = GoogleCloudApigeeV1ApiProductRef::class;
|
---|
| 24 | protected $apiProductsDataType = 'array';
|
---|
| 25 | /**
|
---|
| 26 | * @var string
|
---|
| 27 | */
|
---|
| 28 | public $appGroup;
|
---|
| 29 | /**
|
---|
| 30 | * @var string
|
---|
| 31 | */
|
---|
| 32 | public $appId;
|
---|
| 33 | protected $attributesType = GoogleCloudApigeeV1Attribute::class;
|
---|
| 34 | protected $attributesDataType = 'array';
|
---|
| 35 | /**
|
---|
| 36 | * @var string
|
---|
| 37 | */
|
---|
| 38 | public $callbackUrl;
|
---|
| 39 | /**
|
---|
| 40 | * @var string
|
---|
| 41 | */
|
---|
| 42 | public $companyName;
|
---|
| 43 | /**
|
---|
| 44 | * @var string
|
---|
| 45 | */
|
---|
| 46 | public $createdAt;
|
---|
| 47 | protected $credentialsType = GoogleCloudApigeeV1Credential::class;
|
---|
| 48 | protected $credentialsDataType = 'array';
|
---|
| 49 | /**
|
---|
| 50 | * @var string
|
---|
| 51 | */
|
---|
| 52 | public $developerEmail;
|
---|
| 53 | /**
|
---|
| 54 | * @var string
|
---|
| 55 | */
|
---|
| 56 | public $developerId;
|
---|
| 57 | /**
|
---|
| 58 | * @var string
|
---|
| 59 | */
|
---|
| 60 | public $keyExpiresIn;
|
---|
| 61 | /**
|
---|
| 62 | * @var string
|
---|
| 63 | */
|
---|
| 64 | public $lastModifiedAt;
|
---|
| 65 | /**
|
---|
| 66 | * @var string
|
---|
| 67 | */
|
---|
| 68 | public $name;
|
---|
| 69 | /**
|
---|
| 70 | * @var string[]
|
---|
| 71 | */
|
---|
| 72 | public $scopes;
|
---|
| 73 | /**
|
---|
| 74 | * @var string
|
---|
| 75 | */
|
---|
| 76 | public $status;
|
---|
| 77 |
|
---|
| 78 | /**
|
---|
| 79 | * @param GoogleCloudApigeeV1ApiProductRef[]
|
---|
| 80 | */
|
---|
| 81 | public function setApiProducts($apiProducts)
|
---|
| 82 | {
|
---|
| 83 | $this->apiProducts = $apiProducts;
|
---|
| 84 | }
|
---|
| 85 | /**
|
---|
| 86 | * @return GoogleCloudApigeeV1ApiProductRef[]
|
---|
| 87 | */
|
---|
| 88 | public function getApiProducts()
|
---|
| 89 | {
|
---|
| 90 | return $this->apiProducts;
|
---|
| 91 | }
|
---|
| 92 | /**
|
---|
| 93 | * @param string
|
---|
| 94 | */
|
---|
| 95 | public function setAppGroup($appGroup)
|
---|
| 96 | {
|
---|
| 97 | $this->appGroup = $appGroup;
|
---|
| 98 | }
|
---|
| 99 | /**
|
---|
| 100 | * @return string
|
---|
| 101 | */
|
---|
| 102 | public function getAppGroup()
|
---|
| 103 | {
|
---|
| 104 | return $this->appGroup;
|
---|
| 105 | }
|
---|
| 106 | /**
|
---|
| 107 | * @param string
|
---|
| 108 | */
|
---|
| 109 | public function setAppId($appId)
|
---|
| 110 | {
|
---|
| 111 | $this->appId = $appId;
|
---|
| 112 | }
|
---|
| 113 | /**
|
---|
| 114 | * @return string
|
---|
| 115 | */
|
---|
| 116 | public function getAppId()
|
---|
| 117 | {
|
---|
| 118 | return $this->appId;
|
---|
| 119 | }
|
---|
| 120 | /**
|
---|
| 121 | * @param GoogleCloudApigeeV1Attribute[]
|
---|
| 122 | */
|
---|
| 123 | public function setAttributes($attributes)
|
---|
| 124 | {
|
---|
| 125 | $this->attributes = $attributes;
|
---|
| 126 | }
|
---|
| 127 | /**
|
---|
| 128 | * @return GoogleCloudApigeeV1Attribute[]
|
---|
| 129 | */
|
---|
| 130 | public function getAttributes()
|
---|
| 131 | {
|
---|
| 132 | return $this->attributes;
|
---|
| 133 | }
|
---|
| 134 | /**
|
---|
| 135 | * @param string
|
---|
| 136 | */
|
---|
| 137 | public function setCallbackUrl($callbackUrl)
|
---|
| 138 | {
|
---|
| 139 | $this->callbackUrl = $callbackUrl;
|
---|
| 140 | }
|
---|
| 141 | /**
|
---|
| 142 | * @return string
|
---|
| 143 | */
|
---|
| 144 | public function getCallbackUrl()
|
---|
| 145 | {
|
---|
| 146 | return $this->callbackUrl;
|
---|
| 147 | }
|
---|
| 148 | /**
|
---|
| 149 | * @param string
|
---|
| 150 | */
|
---|
| 151 | public function setCompanyName($companyName)
|
---|
| 152 | {
|
---|
| 153 | $this->companyName = $companyName;
|
---|
| 154 | }
|
---|
| 155 | /**
|
---|
| 156 | * @return string
|
---|
| 157 | */
|
---|
| 158 | public function getCompanyName()
|
---|
| 159 | {
|
---|
| 160 | return $this->companyName;
|
---|
| 161 | }
|
---|
| 162 | /**
|
---|
| 163 | * @param string
|
---|
| 164 | */
|
---|
| 165 | public function setCreatedAt($createdAt)
|
---|
| 166 | {
|
---|
| 167 | $this->createdAt = $createdAt;
|
---|
| 168 | }
|
---|
| 169 | /**
|
---|
| 170 | * @return string
|
---|
| 171 | */
|
---|
| 172 | public function getCreatedAt()
|
---|
| 173 | {
|
---|
| 174 | return $this->createdAt;
|
---|
| 175 | }
|
---|
| 176 | /**
|
---|
| 177 | * @param GoogleCloudApigeeV1Credential[]
|
---|
| 178 | */
|
---|
| 179 | public function setCredentials($credentials)
|
---|
| 180 | {
|
---|
| 181 | $this->credentials = $credentials;
|
---|
| 182 | }
|
---|
| 183 | /**
|
---|
| 184 | * @return GoogleCloudApigeeV1Credential[]
|
---|
| 185 | */
|
---|
| 186 | public function getCredentials()
|
---|
| 187 | {
|
---|
| 188 | return $this->credentials;
|
---|
| 189 | }
|
---|
| 190 | /**
|
---|
| 191 | * @param string
|
---|
| 192 | */
|
---|
| 193 | public function setDeveloperEmail($developerEmail)
|
---|
| 194 | {
|
---|
| 195 | $this->developerEmail = $developerEmail;
|
---|
| 196 | }
|
---|
| 197 | /**
|
---|
| 198 | * @return string
|
---|
| 199 | */
|
---|
| 200 | public function getDeveloperEmail()
|
---|
| 201 | {
|
---|
| 202 | return $this->developerEmail;
|
---|
| 203 | }
|
---|
| 204 | /**
|
---|
| 205 | * @param string
|
---|
| 206 | */
|
---|
| 207 | public function setDeveloperId($developerId)
|
---|
| 208 | {
|
---|
| 209 | $this->developerId = $developerId;
|
---|
| 210 | }
|
---|
| 211 | /**
|
---|
| 212 | * @return string
|
---|
| 213 | */
|
---|
| 214 | public function getDeveloperId()
|
---|
| 215 | {
|
---|
| 216 | return $this->developerId;
|
---|
| 217 | }
|
---|
| 218 | /**
|
---|
| 219 | * @param string
|
---|
| 220 | */
|
---|
| 221 | public function setKeyExpiresIn($keyExpiresIn)
|
---|
| 222 | {
|
---|
| 223 | $this->keyExpiresIn = $keyExpiresIn;
|
---|
| 224 | }
|
---|
| 225 | /**
|
---|
| 226 | * @return string
|
---|
| 227 | */
|
---|
| 228 | public function getKeyExpiresIn()
|
---|
| 229 | {
|
---|
| 230 | return $this->keyExpiresIn;
|
---|
| 231 | }
|
---|
| 232 | /**
|
---|
| 233 | * @param string
|
---|
| 234 | */
|
---|
| 235 | public function setLastModifiedAt($lastModifiedAt)
|
---|
| 236 | {
|
---|
| 237 | $this->lastModifiedAt = $lastModifiedAt;
|
---|
| 238 | }
|
---|
| 239 | /**
|
---|
| 240 | * @return string
|
---|
| 241 | */
|
---|
| 242 | public function getLastModifiedAt()
|
---|
| 243 | {
|
---|
| 244 | return $this->lastModifiedAt;
|
---|
| 245 | }
|
---|
| 246 | /**
|
---|
| 247 | * @param string
|
---|
| 248 | */
|
---|
| 249 | public function setName($name)
|
---|
| 250 | {
|
---|
| 251 | $this->name = $name;
|
---|
| 252 | }
|
---|
| 253 | /**
|
---|
| 254 | * @return string
|
---|
| 255 | */
|
---|
| 256 | public function getName()
|
---|
| 257 | {
|
---|
| 258 | return $this->name;
|
---|
| 259 | }
|
---|
| 260 | /**
|
---|
| 261 | * @param string[]
|
---|
| 262 | */
|
---|
| 263 | public function setScopes($scopes)
|
---|
| 264 | {
|
---|
| 265 | $this->scopes = $scopes;
|
---|
| 266 | }
|
---|
| 267 | /**
|
---|
| 268 | * @return string[]
|
---|
| 269 | */
|
---|
| 270 | public function getScopes()
|
---|
| 271 | {
|
---|
| 272 | return $this->scopes;
|
---|
| 273 | }
|
---|
| 274 | /**
|
---|
| 275 | * @param string
|
---|
| 276 | */
|
---|
| 277 | public function setStatus($status)
|
---|
| 278 | {
|
---|
| 279 | $this->status = $status;
|
---|
| 280 | }
|
---|
| 281 | /**
|
---|
| 282 | * @return string
|
---|
| 283 | */
|
---|
| 284 | public function getStatus()
|
---|
| 285 | {
|
---|
| 286 | return $this->status;
|
---|
| 287 | }
|
---|
| 288 | }
|
---|
| 289 |
|
---|
| 290 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 291 | class_alias(GoogleCloudApigeeV1App::class, 'Google_Service_Apigee_GoogleCloudApigeeV1App');
|
---|