File tree Expand file tree Collapse file tree 3 files changed +82
-0
lines changed Expand file tree Collapse file tree 3 files changed +82
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ class ContactCenter extends \Google\Collection
38
38
* @var string
39
39
*/
40
40
public $ displayName ;
41
+ protected $ earlyType = Early::class;
42
+ protected $ earlyDataType = '' ;
41
43
protected $ instanceConfigType = InstanceConfig::class;
42
44
protected $ instanceConfigDataType = '' ;
43
45
/**
@@ -52,6 +54,8 @@ class ContactCenter extends \Google\Collection
52
54
* @var string
53
55
*/
54
56
public $ name ;
57
+ protected $ normalType = Normal::class;
58
+ protected $ normalDataType = '' ;
55
59
/**
56
60
* @var string[]
57
61
*/
@@ -143,6 +147,20 @@ public function getDisplayName()
143
147
{
144
148
return $ this ->displayName ;
145
149
}
150
+ /**
151
+ * @param Early
152
+ */
153
+ public function setEarly (Early $ early )
154
+ {
155
+ $ this ->early = $ early ;
156
+ }
157
+ /**
158
+ * @return Early
159
+ */
160
+ public function getEarly ()
161
+ {
162
+ return $ this ->early ;
163
+ }
146
164
/**
147
165
* @param InstanceConfig
148
166
*/
@@ -199,6 +217,20 @@ public function getName()
199
217
{
200
218
return $ this ->name ;
201
219
}
220
+ /**
221
+ * @param Normal
222
+ */
223
+ public function setNormal (Normal $ normal )
224
+ {
225
+ $ this ->normal = $ normal ;
226
+ }
227
+ /**
228
+ * @return Normal
229
+ */
230
+ public function getNormal ()
231
+ {
232
+ return $ this ->normal ;
233
+ }
202
234
/**
203
235
* @param string[]
204
236
*/
Original file line number Diff line number Diff line change
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 \CCAIPlatform ;
19
+
20
+ class Early extends \Google \Model
21
+ {
22
+ }
23
+
24
+ // Adding a class alias for backwards compatibility with the previous class name.
25
+ class_alias (Early::class, 'Google_Service_CCAIPlatform_Early ' );
Original file line number Diff line number Diff line change
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 \CCAIPlatform ;
19
+
20
+ class Normal extends \Google \Model
21
+ {
22
+ }
23
+
24
+ // Adding a class alias for backwards compatibility with the previous class name.
25
+ class_alias (Normal::class, 'Google_Service_CCAIPlatform_Normal ' );
You can’t perform that action at this time.
0 commit comments