Skip to content

Commit a975dae

Browse files
1 parent 4890d88 commit a975dae

File tree

3 files changed

+82
-0
lines changed

3 files changed

+82
-0
lines changed

src/CCAIPlatform/ContactCenter.php

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ class ContactCenter extends \Google\Collection
3838
* @var string
3939
*/
4040
public $displayName;
41+
protected $earlyType = Early::class;
42+
protected $earlyDataType = '';
4143
protected $instanceConfigType = InstanceConfig::class;
4244
protected $instanceConfigDataType = '';
4345
/**
@@ -52,6 +54,8 @@ class ContactCenter extends \Google\Collection
5254
* @var string
5355
*/
5456
public $name;
57+
protected $normalType = Normal::class;
58+
protected $normalDataType = '';
5559
/**
5660
* @var string[]
5761
*/
@@ -143,6 +147,20 @@ public function getDisplayName()
143147
{
144148
return $this->displayName;
145149
}
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+
}
146164
/**
147165
* @param InstanceConfig
148166
*/
@@ -199,6 +217,20 @@ public function getName()
199217
{
200218
return $this->name;
201219
}
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+
}
202234
/**
203235
* @param string[]
204236
*/

src/CCAIPlatform/Early.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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');

src/CCAIPlatform/Normal.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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');

0 commit comments

Comments
 (0)