[e3d4e0a] | 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\Cloudchannel;
|
---|
| 19 |
|
---|
| 20 | class GoogleCloudChannelV1alpha1Value extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | /**
|
---|
| 23 | * @var bool
|
---|
| 24 | */
|
---|
| 25 | public $boolValue;
|
---|
| 26 | public $doubleValue;
|
---|
| 27 | /**
|
---|
| 28 | * @var string
|
---|
| 29 | */
|
---|
| 30 | public $int64Value;
|
---|
| 31 | /**
|
---|
| 32 | * @var array[]
|
---|
| 33 | */
|
---|
| 34 | public $protoValue;
|
---|
| 35 | /**
|
---|
| 36 | * @var string
|
---|
| 37 | */
|
---|
| 38 | public $stringValue;
|
---|
| 39 |
|
---|
| 40 | /**
|
---|
| 41 | * @param bool
|
---|
| 42 | */
|
---|
| 43 | public function setBoolValue($boolValue)
|
---|
| 44 | {
|
---|
| 45 | $this->boolValue = $boolValue;
|
---|
| 46 | }
|
---|
| 47 | /**
|
---|
| 48 | * @return bool
|
---|
| 49 | */
|
---|
| 50 | public function getBoolValue()
|
---|
| 51 | {
|
---|
| 52 | return $this->boolValue;
|
---|
| 53 | }
|
---|
| 54 | public function setDoubleValue($doubleValue)
|
---|
| 55 | {
|
---|
| 56 | $this->doubleValue = $doubleValue;
|
---|
| 57 | }
|
---|
| 58 | public function getDoubleValue()
|
---|
| 59 | {
|
---|
| 60 | return $this->doubleValue;
|
---|
| 61 | }
|
---|
| 62 | /**
|
---|
| 63 | * @param string
|
---|
| 64 | */
|
---|
| 65 | public function setInt64Value($int64Value)
|
---|
| 66 | {
|
---|
| 67 | $this->int64Value = $int64Value;
|
---|
| 68 | }
|
---|
| 69 | /**
|
---|
| 70 | * @return string
|
---|
| 71 | */
|
---|
| 72 | public function getInt64Value()
|
---|
| 73 | {
|
---|
| 74 | return $this->int64Value;
|
---|
| 75 | }
|
---|
| 76 | /**
|
---|
| 77 | * @param array[]
|
---|
| 78 | */
|
---|
| 79 | public function setProtoValue($protoValue)
|
---|
| 80 | {
|
---|
| 81 | $this->protoValue = $protoValue;
|
---|
| 82 | }
|
---|
| 83 | /**
|
---|
| 84 | * @return array[]
|
---|
| 85 | */
|
---|
| 86 | public function getProtoValue()
|
---|
| 87 | {
|
---|
| 88 | return $this->protoValue;
|
---|
| 89 | }
|
---|
| 90 | /**
|
---|
| 91 | * @param string
|
---|
| 92 | */
|
---|
| 93 | public function setStringValue($stringValue)
|
---|
| 94 | {
|
---|
| 95 | $this->stringValue = $stringValue;
|
---|
| 96 | }
|
---|
| 97 | /**
|
---|
| 98 | * @return string
|
---|
| 99 | */
|
---|
| 100 | public function getStringValue()
|
---|
| 101 | {
|
---|
| 102 | return $this->stringValue;
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 107 | class_alias(GoogleCloudChannelV1alpha1Value::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1alpha1Value');
|
---|