source: vendor/google/apiclient-services/src/ServiceConsumerManagement/ClientLibrarySettings.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 4.5 KB
Line 
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
18namespace Google\Service\ServiceConsumerManagement;
19
20class ClientLibrarySettings extends \Google\Model
21{
22 protected $cppSettingsType = CppSettings::class;
23 protected $cppSettingsDataType = '';
24 protected $dotnetSettingsType = DotnetSettings::class;
25 protected $dotnetSettingsDataType = '';
26 protected $goSettingsType = GoSettings::class;
27 protected $goSettingsDataType = '';
28 protected $javaSettingsType = JavaSettings::class;
29 protected $javaSettingsDataType = '';
30 /**
31 * @var string
32 */
33 public $launchStage;
34 protected $nodeSettingsType = NodeSettings::class;
35 protected $nodeSettingsDataType = '';
36 protected $phpSettingsType = PhpSettings::class;
37 protected $phpSettingsDataType = '';
38 protected $pythonSettingsType = PythonSettings::class;
39 protected $pythonSettingsDataType = '';
40 /**
41 * @var bool
42 */
43 public $restNumericEnums;
44 protected $rubySettingsType = RubySettings::class;
45 protected $rubySettingsDataType = '';
46 /**
47 * @var string
48 */
49 public $version;
50
51 /**
52 * @param CppSettings
53 */
54 public function setCppSettings(CppSettings $cppSettings)
55 {
56 $this->cppSettings = $cppSettings;
57 }
58 /**
59 * @return CppSettings
60 */
61 public function getCppSettings()
62 {
63 return $this->cppSettings;
64 }
65 /**
66 * @param DotnetSettings
67 */
68 public function setDotnetSettings(DotnetSettings $dotnetSettings)
69 {
70 $this->dotnetSettings = $dotnetSettings;
71 }
72 /**
73 * @return DotnetSettings
74 */
75 public function getDotnetSettings()
76 {
77 return $this->dotnetSettings;
78 }
79 /**
80 * @param GoSettings
81 */
82 public function setGoSettings(GoSettings $goSettings)
83 {
84 $this->goSettings = $goSettings;
85 }
86 /**
87 * @return GoSettings
88 */
89 public function getGoSettings()
90 {
91 return $this->goSettings;
92 }
93 /**
94 * @param JavaSettings
95 */
96 public function setJavaSettings(JavaSettings $javaSettings)
97 {
98 $this->javaSettings = $javaSettings;
99 }
100 /**
101 * @return JavaSettings
102 */
103 public function getJavaSettings()
104 {
105 return $this->javaSettings;
106 }
107 /**
108 * @param string
109 */
110 public function setLaunchStage($launchStage)
111 {
112 $this->launchStage = $launchStage;
113 }
114 /**
115 * @return string
116 */
117 public function getLaunchStage()
118 {
119 return $this->launchStage;
120 }
121 /**
122 * @param NodeSettings
123 */
124 public function setNodeSettings(NodeSettings $nodeSettings)
125 {
126 $this->nodeSettings = $nodeSettings;
127 }
128 /**
129 * @return NodeSettings
130 */
131 public function getNodeSettings()
132 {
133 return $this->nodeSettings;
134 }
135 /**
136 * @param PhpSettings
137 */
138 public function setPhpSettings(PhpSettings $phpSettings)
139 {
140 $this->phpSettings = $phpSettings;
141 }
142 /**
143 * @return PhpSettings
144 */
145 public function getPhpSettings()
146 {
147 return $this->phpSettings;
148 }
149 /**
150 * @param PythonSettings
151 */
152 public function setPythonSettings(PythonSettings $pythonSettings)
153 {
154 $this->pythonSettings = $pythonSettings;
155 }
156 /**
157 * @return PythonSettings
158 */
159 public function getPythonSettings()
160 {
161 return $this->pythonSettings;
162 }
163 /**
164 * @param bool
165 */
166 public function setRestNumericEnums($restNumericEnums)
167 {
168 $this->restNumericEnums = $restNumericEnums;
169 }
170 /**
171 * @return bool
172 */
173 public function getRestNumericEnums()
174 {
175 return $this->restNumericEnums;
176 }
177 /**
178 * @param RubySettings
179 */
180 public function setRubySettings(RubySettings $rubySettings)
181 {
182 $this->rubySettings = $rubySettings;
183 }
184 /**
185 * @return RubySettings
186 */
187 public function getRubySettings()
188 {
189 return $this->rubySettings;
190 }
191 /**
192 * @param string
193 */
194 public function setVersion($version)
195 {
196 $this->version = $version;
197 }
198 /**
199 * @return string
200 */
201 public function getVersion()
202 {
203 return $this->version;
204 }
205}
206
207// Adding a class alias for backwards compatibility with the previous class name.
208class_alias(ClientLibrarySettings::class, 'Google_Service_ServiceConsumerManagement_ClientLibrarySettings');
Note: See TracBrowser for help on using the repository browser.