lms/vendor/google/apiclient-services/src/Cloudchannel/GoogleCloudChannelV1ParameterDefinition.php
2025-12-15 12:26:23 +01:00

130 lines
2.8 KiB
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\Cloudchannel;
class GoogleCloudChannelV1ParameterDefinition extends \Google\Collection
{
protected $collection_key = 'allowedValues';
protected $allowedValuesType = GoogleCloudChannelV1Value::class;
protected $allowedValuesDataType = 'array';
protected $maxValueType = GoogleCloudChannelV1Value::class;
protected $maxValueDataType = '';
protected $minValueType = GoogleCloudChannelV1Value::class;
protected $minValueDataType = '';
/**
* @var string
*/
public $name;
/**
* @var bool
*/
public $optional;
/**
* @var string
*/
public $parameterType;
/**
* @param GoogleCloudChannelV1Value[]
*/
public function setAllowedValues($allowedValues)
{
$this->allowedValues = $allowedValues;
}
/**
* @return GoogleCloudChannelV1Value[]
*/
public function getAllowedValues()
{
return $this->allowedValues;
}
/**
* @param GoogleCloudChannelV1Value
*/
public function setMaxValue(GoogleCloudChannelV1Value $maxValue)
{
$this->maxValue = $maxValue;
}
/**
* @return GoogleCloudChannelV1Value
*/
public function getMaxValue()
{
return $this->maxValue;
}
/**
* @param GoogleCloudChannelV1Value
*/
public function setMinValue(GoogleCloudChannelV1Value $minValue)
{
$this->minValue = $minValue;
}
/**
* @return GoogleCloudChannelV1Value
*/
public function getMinValue()
{
return $this->minValue;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param bool
*/
public function setOptional($optional)
{
$this->optional = $optional;
}
/**
* @return bool
*/
public function getOptional()
{
return $this->optional;
}
/**
* @param string
*/
public function setParameterType($parameterType)
{
$this->parameterType = $parameterType;
}
/**
* @return string
*/
public function getParameterType()
{
return $this->parameterType;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudChannelV1ParameterDefinition::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1ParameterDefinition');