source: vendor/google/apiclient-services/src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1AnalysisResultCallAnalysisMetadata.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.7 KB
RevLine 
[e3d4e0a]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 GoogleCloudContactcenterinsightsV1AnalysisResultCallAnalysisMetadata extends \Google\Collection
21{
22 protected $collection_key = 'sentiments';
23 protected $annotationsType = GoogleCloudContactcenterinsightsV1CallAnnotation::class;
24 protected $annotationsDataType = 'array';
25 protected $entitiesType = GoogleCloudContactcenterinsightsV1Entity::class;
26 protected $entitiesDataType = 'map';
27 protected $intentsType = GoogleCloudContactcenterinsightsV1Intent::class;
28 protected $intentsDataType = 'map';
29 protected $issueModelResultType = GoogleCloudContactcenterinsightsV1IssueModelResult::class;
30 protected $issueModelResultDataType = '';
31 protected $phraseMatchersType = GoogleCloudContactcenterinsightsV1PhraseMatchData::class;
32 protected $phraseMatchersDataType = 'map';
33 protected $qaScorecardResultsType = GoogleCloudContactcenterinsightsV1QaScorecardResult::class;
34 protected $qaScorecardResultsDataType = 'array';
35 protected $sentimentsType = GoogleCloudContactcenterinsightsV1ConversationLevelSentiment::class;
36 protected $sentimentsDataType = 'array';
37 protected $silenceType = GoogleCloudContactcenterinsightsV1ConversationLevelSilence::class;
38 protected $silenceDataType = '';
39
40 /**
41 * @param GoogleCloudContactcenterinsightsV1CallAnnotation[]
42 */
43 public function setAnnotations($annotations)
44 {
45 $this->annotations = $annotations;
46 }
47 /**
48 * @return GoogleCloudContactcenterinsightsV1CallAnnotation[]
49 */
50 public function getAnnotations()
51 {
52 return $this->annotations;
53 }
54 /**
55 * @param GoogleCloudContactcenterinsightsV1Entity[]
56 */
57 public function setEntities($entities)
58 {
59 $this->entities = $entities;
60 }
61 /**
62 * @return GoogleCloudContactcenterinsightsV1Entity[]
63 */
64 public function getEntities()
65 {
66 return $this->entities;
67 }
68 /**
69 * @param GoogleCloudContactcenterinsightsV1Intent[]
70 */
71 public function setIntents($intents)
72 {
73 $this->intents = $intents;
74 }
75 /**
76 * @return GoogleCloudContactcenterinsightsV1Intent[]
77 */
78 public function getIntents()
79 {
80 return $this->intents;
81 }
82 /**
83 * @param GoogleCloudContactcenterinsightsV1IssueModelResult
84 */
85 public function setIssueModelResult(GoogleCloudContactcenterinsightsV1IssueModelResult $issueModelResult)
86 {
87 $this->issueModelResult = $issueModelResult;
88 }
89 /**
90 * @return GoogleCloudContactcenterinsightsV1IssueModelResult
91 */
92 public function getIssueModelResult()
93 {
94 return $this->issueModelResult;
95 }
96 /**
97 * @param GoogleCloudContactcenterinsightsV1PhraseMatchData[]
98 */
99 public function setPhraseMatchers($phraseMatchers)
100 {
101 $this->phraseMatchers = $phraseMatchers;
102 }
103 /**
104 * @return GoogleCloudContactcenterinsightsV1PhraseMatchData[]
105 */
106 public function getPhraseMatchers()
107 {
108 return $this->phraseMatchers;
109 }
110 /**
111 * @param GoogleCloudContactcenterinsightsV1QaScorecardResult[]
112 */
113 public function setQaScorecardResults($qaScorecardResults)
114 {
115 $this->qaScorecardResults = $qaScorecardResults;
116 }
117 /**
118 * @return GoogleCloudContactcenterinsightsV1QaScorecardResult[]
119 */
120 public function getQaScorecardResults()
121 {
122 return $this->qaScorecardResults;
123 }
124 /**
125 * @param GoogleCloudContactcenterinsightsV1ConversationLevelSentiment[]
126 */
127 public function setSentiments($sentiments)
128 {
129 $this->sentiments = $sentiments;
130 }
131 /**
132 * @return GoogleCloudContactcenterinsightsV1ConversationLevelSentiment[]
133 */
134 public function getSentiments()
135 {
136 return $this->sentiments;
137 }
138 /**
139 * @param GoogleCloudContactcenterinsightsV1ConversationLevelSilence
140 */
141 public function setSilence(GoogleCloudContactcenterinsightsV1ConversationLevelSilence $silence)
142 {
143 $this->silence = $silence;
144 }
145 /**
146 * @return GoogleCloudContactcenterinsightsV1ConversationLevelSilence
147 */
148 public function getSilence()
149 {
150 return $this->silence;
151 }
152}
153
154// Adding a class alias for backwards compatibility with the previous class name.
155class_alias(GoogleCloudContactcenterinsightsV1AnalysisResultCallAnalysisMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1AnalysisResultCallAnalysisMetadata');
Note: See TracBrowser for help on using the repository browser.