source: vendor/google/apiclient-services/src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata.php

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

Upload project files

  • Property mode set to 100644
File size: 3.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\Contactcenterinsights;
19
20class GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata extends \Google\Collection
21{
22 protected $collection_key = 'partialErrors';
23 /**
24 * @var int
25 */
26 public $completedAnalysesCount;
27 /**
28 * @var string
29 */
30 public $createTime;
31 /**
32 * @var string
33 */
34 public $endTime;
35 /**
36 * @var int
37 */
38 public $failedAnalysesCount;
39 protected $partialErrorsType = GoogleRpcStatus::class;
40 protected $partialErrorsDataType = 'array';
41 protected $requestType = GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest::class;
42 protected $requestDataType = '';
43 /**
44 * @var int
45 */
46 public $totalRequestedAnalysesCount;
47
48 /**
49 * @param int
50 */
51 public function setCompletedAnalysesCount($completedAnalysesCount)
52 {
53 $this->completedAnalysesCount = $completedAnalysesCount;
54 }
55 /**
56 * @return int
57 */
58 public function getCompletedAnalysesCount()
59 {
60 return $this->completedAnalysesCount;
61 }
62 /**
63 * @param string
64 */
65 public function setCreateTime($createTime)
66 {
67 $this->createTime = $createTime;
68 }
69 /**
70 * @return string
71 */
72 public function getCreateTime()
73 {
74 return $this->createTime;
75 }
76 /**
77 * @param string
78 */
79 public function setEndTime($endTime)
80 {
81 $this->endTime = $endTime;
82 }
83 /**
84 * @return string
85 */
86 public function getEndTime()
87 {
88 return $this->endTime;
89 }
90 /**
91 * @param int
92 */
93 public function setFailedAnalysesCount($failedAnalysesCount)
94 {
95 $this->failedAnalysesCount = $failedAnalysesCount;
96 }
97 /**
98 * @return int
99 */
100 public function getFailedAnalysesCount()
101 {
102 return $this->failedAnalysesCount;
103 }
104 /**
105 * @param GoogleRpcStatus[]
106 */
107 public function setPartialErrors($partialErrors)
108 {
109 $this->partialErrors = $partialErrors;
110 }
111 /**
112 * @return GoogleRpcStatus[]
113 */
114 public function getPartialErrors()
115 {
116 return $this->partialErrors;
117 }
118 /**
119 * @param GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest
120 */
121 public function setRequest(GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest $request)
122 {
123 $this->request = $request;
124 }
125 /**
126 * @return GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest
127 */
128 public function getRequest()
129 {
130 return $this->request;
131 }
132 /**
133 * @param int
134 */
135 public function setTotalRequestedAnalysesCount($totalRequestedAnalysesCount)
136 {
137 $this->totalRequestedAnalysesCount = $totalRequestedAnalysesCount;
138 }
139 /**
140 * @return int
141 */
142 public function getTotalRequestedAnalysesCount()
143 {
144 return $this->totalRequestedAnalysesCount;
145 }
146}
147
148// Adding a class alias for backwards compatibility with the previous class name.
149class_alias(GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata');
Note: See TracBrowser for help on using the repository browser.