EVOLUTION-MANAGER
Edit File: EnterpriseCrmLoggingGwsFieldLimits.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\Integrations; class EnterpriseCrmLoggingGwsFieldLimits extends \Google\Collection { protected $collection_key = 'logType'; /** * @var string */ public $logAction; /** * @var string[] */ public $logType; /** * @var int */ public $maxArraySize; /** * @var int */ public $maxStringLength; /** * @var string */ public $shortenerType; /** * @param string */ public function setLogAction($logAction) { $this->logAction = $logAction; } /** * @return string */ public function getLogAction() { return $this->logAction; } /** * @param string[] */ public function setLogType($logType) { $this->logType = $logType; } /** * @return string[] */ public function getLogType() { return $this->logType; } /** * @param int */ public function setMaxArraySize($maxArraySize) { $this->maxArraySize = $maxArraySize; } /** * @return int */ public function getMaxArraySize() { return $this->maxArraySize; } /** * @param int */ public function setMaxStringLength($maxStringLength) { $this->maxStringLength = $maxStringLength; } /** * @return int */ public function getMaxStringLength() { return $this->maxStringLength; } /** * @param string */ public function setShortenerType($shortenerType) { $this->shortenerType = $shortenerType; } /** * @return string */ public function getShortenerType() { return $this->shortenerType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EnterpriseCrmLoggingGwsFieldLimits::class, 'Google_Service_Integrations_EnterpriseCrmLoggingGwsFieldLimits');