Skip to content

Commit 68b6f9a

Browse files
1 parent c5a7184 commit 68b6f9a

8 files changed

+276
-0
lines changed

src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequest.php

+16
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequest extend
4242
* @var string
4343
*/
4444
public $parent;
45+
protected $sheetsDestinationType = GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination::class;
46+
protected $sheetsDestinationDataType = '';
4547
/**
4648
* @var string[]
4749
*/
@@ -131,6 +133,20 @@ public function getParent()
131133
{
132134
return $this->parent;
133135
}
136+
/**
137+
* @param GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination
138+
*/
139+
public function setSheetsDestination(GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination $sheetsDestination)
140+
{
141+
$this->sheetsDestination = $sheetsDestination;
142+
}
143+
/**
144+
* @return GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination
145+
*/
146+
public function getSheetsDestination()
147+
{
148+
return $this->sheetsDestination;
149+
}
134150
/**
135151
* @param string[]
136152
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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\Contactcenterinsights;
19+
20+
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $sheetTitle;
26+
/**
27+
* @var string
28+
*/
29+
public $spreadsheetUri;
30+
31+
/**
32+
* @param string
33+
*/
34+
public function setSheetTitle($sheetTitle)
35+
{
36+
$this->sheetTitle = $sheetTitle;
37+
}
38+
/**
39+
* @return string
40+
*/
41+
public function getSheetTitle()
42+
{
43+
return $this->sheetTitle;
44+
}
45+
/**
46+
* @param string
47+
*/
48+
public function setSpreadsheetUri($spreadsheetUri)
49+
{
50+
$this->spreadsheetUri = $spreadsheetUri;
51+
}
52+
/**
53+
* @return string
54+
*/
55+
public function getSpreadsheetUri()
56+
{
57+
return $this->spreadsheetUri;
58+
}
59+
}
60+
61+
// Adding a class alias for backwards compatibility with the previous class name.
62+
class_alias(GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination');

src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequest.php

+16
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequest extends
2121
{
2222
protected $gcsSourceType = GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource::class;
2323
protected $gcsSourceDataType = '';
24+
protected $sheetsSourceType = GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource::class;
25+
protected $sheetsSourceDataType = '';
2426
/**
2527
* @var bool
2628
*/
@@ -40,6 +42,20 @@ public function getGcsSource()
4042
{
4143
return $this->gcsSource;
4244
}
45+
/**
46+
* @param GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
47+
*/
48+
public function setSheetsSource(GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource $sheetsSource)
49+
{
50+
$this->sheetsSource = $sheetsSource;
51+
}
52+
/**
53+
* @return GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
54+
*/
55+
public function getSheetsSource()
56+
{
57+
return $this->sheetsSource;
58+
}
4359
/**
4460
* @param bool
4561
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\Contactcenterinsights;
19+
20+
class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $spreadsheetUri;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setSpreadsheetUri($spreadsheetUri)
31+
{
32+
$this->spreadsheetUri = $spreadsheetUri;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getSpreadsheetUri()
38+
{
39+
return $this->spreadsheetUri;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource');
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\Contactcenterinsights;
19+
20+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\Contactcenterinsights;
19+
20+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $summaryText;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setSummaryText($summaryText)
31+
{
32+
$this->summaryText = $summaryText;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getSummaryText()
38+
{
39+
return $this->summaryText;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse');
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\Contactcenterinsights;
19+
20+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewMetadata extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewMetadata');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\Contactcenterinsights;
19+
20+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewResponse extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $summaryText;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setSummaryText($summaryText)
31+
{
32+
$this->summaryText = $summaryText;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getSummaryText()
38+
{
39+
return $this->summaryText;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewResponse::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewResponse');

0 commit comments

Comments
 (0)