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 GoogleCloudContactcenterinsightsV1RuntimeAnnotation extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $annotationId;
26  protected $answerFeedbackType = GoogleCloudContactcenterinsightsV1AnswerFeedback::class;
27  protected $answerFeedbackDataType = '';
28  protected $articleSuggestionType = GoogleCloudContactcenterinsightsV1ArticleSuggestionData::class;
29  protected $articleSuggestionDataType = '';
30  /**
31   * @var string
32   */
33  public $createTime;
34  protected $dialogflowInteractionType = GoogleCloudContactcenterinsightsV1DialogflowInteractionData::class;
35  protected $dialogflowInteractionDataType = '';
36  protected $endBoundaryType = GoogleCloudContactcenterinsightsV1AnnotationBoundary::class;
37  protected $endBoundaryDataType = '';
38  protected $faqAnswerType = GoogleCloudContactcenterinsightsV1FaqAnswerData::class;
39  protected $faqAnswerDataType = '';
40  protected $smartComposeSuggestionType = GoogleCloudContactcenterinsightsV1SmartComposeSuggestionData::class;
41  protected $smartComposeSuggestionDataType = '';
42  protected $smartReplyType = GoogleCloudContactcenterinsightsV1SmartReplyData::class;
43  protected $smartReplyDataType = '';
44  protected $startBoundaryType = GoogleCloudContactcenterinsightsV1AnnotationBoundary::class;
45  protected $startBoundaryDataType = '';
46
47  /**
48   * @param string
49   */
50  public function setAnnotationId($annotationId)
51  {
52    $this->annotationId = $annotationId;
53  }
54  /**
55   * @return string
56   */
57  public function getAnnotationId()
58  {
59    return $this->annotationId;
60  }
61  /**
62   * @param GoogleCloudContactcenterinsightsV1AnswerFeedback
63   */
64  public function setAnswerFeedback(GoogleCloudContactcenterinsightsV1AnswerFeedback $answerFeedback)
65  {
66    $this->answerFeedback = $answerFeedback;
67  }
68  /**
69   * @return GoogleCloudContactcenterinsightsV1AnswerFeedback
70   */
71  public function getAnswerFeedback()
72  {
73    return $this->answerFeedback;
74  }
75  /**
76   * @param GoogleCloudContactcenterinsightsV1ArticleSuggestionData
77   */
78  public function setArticleSuggestion(GoogleCloudContactcenterinsightsV1ArticleSuggestionData $articleSuggestion)
79  {
80    $this->articleSuggestion = $articleSuggestion;
81  }
82  /**
83   * @return GoogleCloudContactcenterinsightsV1ArticleSuggestionData
84   */
85  public function getArticleSuggestion()
86  {
87    return $this->articleSuggestion;
88  }
89  /**
90   * @param string
91   */
92  public function setCreateTime($createTime)
93  {
94    $this->createTime = $createTime;
95  }
96  /**
97   * @return string
98   */
99  public function getCreateTime()
100  {
101    return $this->createTime;
102  }
103  /**
104   * @param GoogleCloudContactcenterinsightsV1DialogflowInteractionData
105   */
106  public function setDialogflowInteraction(GoogleCloudContactcenterinsightsV1DialogflowInteractionData $dialogflowInteraction)
107  {
108    $this->dialogflowInteraction = $dialogflowInteraction;
109  }
110  /**
111   * @return GoogleCloudContactcenterinsightsV1DialogflowInteractionData
112   */
113  public function getDialogflowInteraction()
114  {
115    return $this->dialogflowInteraction;
116  }
117  /**
118   * @param GoogleCloudContactcenterinsightsV1AnnotationBoundary
119   */
120  public function setEndBoundary(GoogleCloudContactcenterinsightsV1AnnotationBoundary $endBoundary)
121  {
122    $this->endBoundary = $endBoundary;
123  }
124  /**
125   * @return GoogleCloudContactcenterinsightsV1AnnotationBoundary
126   */
127  public function getEndBoundary()
128  {
129    return $this->endBoundary;
130  }
131  /**
132   * @param GoogleCloudContactcenterinsightsV1FaqAnswerData
133   */
134  public function setFaqAnswer(GoogleCloudContactcenterinsightsV1FaqAnswerData $faqAnswer)
135  {
136    $this->faqAnswer = $faqAnswer;
137  }
138  /**
139   * @return GoogleCloudContactcenterinsightsV1FaqAnswerData
140   */
141  public function getFaqAnswer()
142  {
143    return $this->faqAnswer;
144  }
145  /**
146   * @param GoogleCloudContactcenterinsightsV1SmartComposeSuggestionData
147   */
148  public function setSmartComposeSuggestion(GoogleCloudContactcenterinsightsV1SmartComposeSuggestionData $smartComposeSuggestion)
149  {
150    $this->smartComposeSuggestion = $smartComposeSuggestion;
151  }
152  /**
153   * @return GoogleCloudContactcenterinsightsV1SmartComposeSuggestionData
154   */
155  public function getSmartComposeSuggestion()
156  {
157    return $this->smartComposeSuggestion;
158  }
159  /**
160   * @param GoogleCloudContactcenterinsightsV1SmartReplyData
161   */
162  public function setSmartReply(GoogleCloudContactcenterinsightsV1SmartReplyData $smartReply)
163  {
164    $this->smartReply = $smartReply;
165  }
166  /**
167   * @return GoogleCloudContactcenterinsightsV1SmartReplyData
168   */
169  public function getSmartReply()
170  {
171    return $this->smartReply;
172  }
173  /**
174   * @param GoogleCloudContactcenterinsightsV1AnnotationBoundary
175   */
176  public function setStartBoundary(GoogleCloudContactcenterinsightsV1AnnotationBoundary $startBoundary)
177  {
178    $this->startBoundary = $startBoundary;
179  }
180  /**
181   * @return GoogleCloudContactcenterinsightsV1AnnotationBoundary
182   */
183  public function getStartBoundary()
184  {
185    return $this->startBoundary;
186  }
187}
188
189// Adding a class alias for backwards compatibility with the previous class name.
190class_alias(GoogleCloudContactcenterinsightsV1RuntimeAnnotation::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1RuntimeAnnotation');
191