EVOLUTION-MANAGER
Edit File: GoogleCloudApigeeV1DeveloperAppKey.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Apigee; class GoogleCloudApigeeV1DeveloperAppKey extends \Google\Collection { protected $collection_key = 'scopes'; /** * @var array[] */ public $apiProducts; protected $attributesType = GoogleCloudApigeeV1Attribute::class; protected $attributesDataType = 'array'; /** * @var string */ public $consumerKey; /** * @var string */ public $consumerSecret; /** * @var string */ public $expiresAt; /** * @var string */ public $expiresInSeconds; /** * @var string */ public $issuedAt; /** * @var string[] */ public $scopes; /** * @var string */ public $status; /** * @param array[] */ public function setApiProducts($apiProducts) { $this->apiProducts = $apiProducts; } /** * @return array[] */ public function getApiProducts() { return $this->apiProducts; } /** * @param GoogleCloudApigeeV1Attribute[] */ public function setAttributes($attributes) { $this->attributes = $attributes; } /** * @return GoogleCloudApigeeV1Attribute[] */ public function getAttributes() { return $this->attributes; } /** * @param string */ public function setConsumerKey($consumerKey) { $this->consumerKey = $consumerKey; } /** * @return string */ public function getConsumerKey() { return $this->consumerKey; } /** * @param string */ public function setConsumerSecret($consumerSecret) { $this->consumerSecret = $consumerSecret; } /** * @return string */ public function getConsumerSecret() { return $this->consumerSecret; } /** * @param string */ public function setExpiresAt($expiresAt) { $this->expiresAt = $expiresAt; } /** * @return string */ public function getExpiresAt() { return $this->expiresAt; } /** * @param string */ public function setExpiresInSeconds($expiresInSeconds) { $this->expiresInSeconds = $expiresInSeconds; } /** * @return string */ public function getExpiresInSeconds() { return $this->expiresInSeconds; } /** * @param string */ public function setIssuedAt($issuedAt) { $this->issuedAt = $issuedAt; } /** * @return string */ public function getIssuedAt() { return $this->issuedAt; } /** * @param string[] */ public function setScopes($scopes) { $this->scopes = $scopes; } /** * @return string[] */ public function getScopes() { return $this->scopes; } /** * @param string */ public function setStatus($status) { $this->status = $status; } /** * @return string */ public function getStatus() { return $this->status; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudApigeeV1DeveloperAppKey::class, 'Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey');