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 GoogleCloudContactcenterinsightsV1CallAnnotation extends \Google\Model
21{
22  protected $annotationEndBoundaryType = GoogleCloudContactcenterinsightsV1AnnotationBoundary::class;
23  protected $annotationEndBoundaryDataType = '';
24  protected $annotationStartBoundaryType = GoogleCloudContactcenterinsightsV1AnnotationBoundary::class;
25  protected $annotationStartBoundaryDataType = '';
26  /**
27   * @var int
28   */
29  public $channelTag;
30  protected $entityMentionDataType = GoogleCloudContactcenterinsightsV1EntityMentionData::class;
31  protected $entityMentionDataDataType = '';
32  protected $holdDataType = GoogleCloudContactcenterinsightsV1HoldData::class;
33  protected $holdDataDataType = '';
34  protected $intentMatchDataType = GoogleCloudContactcenterinsightsV1IntentMatchData::class;
35  protected $intentMatchDataDataType = '';
36  protected $interruptionDataType = GoogleCloudContactcenterinsightsV1InterruptionData::class;
37  protected $interruptionDataDataType = '';
38  protected $phraseMatchDataType = GoogleCloudContactcenterinsightsV1PhraseMatchData::class;
39  protected $phraseMatchDataDataType = '';
40  protected $sentimentDataType = GoogleCloudContactcenterinsightsV1SentimentData::class;
41  protected $sentimentDataDataType = '';
42  protected $silenceDataType = GoogleCloudContactcenterinsightsV1SilenceData::class;
43  protected $silenceDataDataType = '';
44
45  /**
46   * @param GoogleCloudContactcenterinsightsV1AnnotationBoundary
47   */
48  public function setAnnotationEndBoundary(GoogleCloudContactcenterinsightsV1AnnotationBoundary $annotationEndBoundary)
49  {
50    $this->annotationEndBoundary = $annotationEndBoundary;
51  }
52  /**
53   * @return GoogleCloudContactcenterinsightsV1AnnotationBoundary
54   */
55  public function getAnnotationEndBoundary()
56  {
57    return $this->annotationEndBoundary;
58  }
59  /**
60   * @param GoogleCloudContactcenterinsightsV1AnnotationBoundary
61   */
62  public function setAnnotationStartBoundary(GoogleCloudContactcenterinsightsV1AnnotationBoundary $annotationStartBoundary)
63  {
64    $this->annotationStartBoundary = $annotationStartBoundary;
65  }
66  /**
67   * @return GoogleCloudContactcenterinsightsV1AnnotationBoundary
68   */
69  public function getAnnotationStartBoundary()
70  {
71    return $this->annotationStartBoundary;
72  }
73  /**
74   * @param int
75   */
76  public function setChannelTag($channelTag)
77  {
78    $this->channelTag = $channelTag;
79  }
80  /**
81   * @return int
82   */
83  public function getChannelTag()
84  {
85    return $this->channelTag;
86  }
87  /**
88   * @param GoogleCloudContactcenterinsightsV1EntityMentionData
89   */
90  public function setEntityMentionData(GoogleCloudContactcenterinsightsV1EntityMentionData $entityMentionData)
91  {
92    $this->entityMentionData = $entityMentionData;
93  }
94  /**
95   * @return GoogleCloudContactcenterinsightsV1EntityMentionData
96   */
97  public function getEntityMentionData()
98  {
99    return $this->entityMentionData;
100  }
101  /**
102   * @param GoogleCloudContactcenterinsightsV1HoldData
103   */
104  public function setHoldData(GoogleCloudContactcenterinsightsV1HoldData $holdData)
105  {
106    $this->holdData = $holdData;
107  }
108  /**
109   * @return GoogleCloudContactcenterinsightsV1HoldData
110   */
111  public function getHoldData()
112  {
113    return $this->holdData;
114  }
115  /**
116   * @param GoogleCloudContactcenterinsightsV1IntentMatchData
117   */
118  public function setIntentMatchData(GoogleCloudContactcenterinsightsV1IntentMatchData $intentMatchData)
119  {
120    $this->intentMatchData = $intentMatchData;
121  }
122  /**
123   * @return GoogleCloudContactcenterinsightsV1IntentMatchData
124   */
125  public function getIntentMatchData()
126  {
127    return $this->intentMatchData;
128  }
129  /**
130   * @param GoogleCloudContactcenterinsightsV1InterruptionData
131   */
132  public function setInterruptionData(GoogleCloudContactcenterinsightsV1InterruptionData $interruptionData)
133  {
134    $this->interruptionData = $interruptionData;
135  }
136  /**
137   * @return GoogleCloudContactcenterinsightsV1InterruptionData
138   */
139  public function getInterruptionData()
140  {
141    return $this->interruptionData;
142  }
143  /**
144   * @param GoogleCloudContactcenterinsightsV1PhraseMatchData
145   */
146  public function setPhraseMatchData(GoogleCloudContactcenterinsightsV1PhraseMatchData $phraseMatchData)
147  {
148    $this->phraseMatchData = $phraseMatchData;
149  }
150  /**
151   * @return GoogleCloudContactcenterinsightsV1PhraseMatchData
152   */
153  public function getPhraseMatchData()
154  {
155    return $this->phraseMatchData;
156  }
157  /**
158   * @param GoogleCloudContactcenterinsightsV1SentimentData
159   */
160  public function setSentimentData(GoogleCloudContactcenterinsightsV1SentimentData $sentimentData)
161  {
162    $this->sentimentData = $sentimentData;
163  }
164  /**
165   * @return GoogleCloudContactcenterinsightsV1SentimentData
166   */
167  public function getSentimentData()
168  {
169    return $this->sentimentData;
170  }
171  /**
172   * @param GoogleCloudContactcenterinsightsV1SilenceData
173   */
174  public function setSilenceData(GoogleCloudContactcenterinsightsV1SilenceData $silenceData)
175  {
176    $this->silenceData = $silenceData;
177  }
178  /**
179   * @return GoogleCloudContactcenterinsightsV1SilenceData
180   */
181  public function getSilenceData()
182  {
183    return $this->silenceData;
184  }
185}
186
187// Adding a class alias for backwards compatibility with the previous class name.
188class_alias(GoogleCloudContactcenterinsightsV1CallAnnotation::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1CallAnnotation');
189