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\Dialogflow;
19
20class GoogleCloudDialogflowV2beta1SuggestionResult extends \Google\Model
21{
22  protected $errorType = GoogleRpcStatus::class;
23  protected $errorDataType = '';
24  protected $suggestArticlesResponseType = GoogleCloudDialogflowV2beta1SuggestArticlesResponse::class;
25  protected $suggestArticlesResponseDataType = '';
26  protected $suggestFaqAnswersResponseType = GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse::class;
27  protected $suggestFaqAnswersResponseDataType = '';
28  protected $suggestSmartRepliesResponseType = GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse::class;
29  protected $suggestSmartRepliesResponseDataType = '';
30
31  /**
32   * @param GoogleRpcStatus
33   */
34  public function setError(GoogleRpcStatus $error)
35  {
36    $this->error = $error;
37  }
38  /**
39   * @return GoogleRpcStatus
40   */
41  public function getError()
42  {
43    return $this->error;
44  }
45  /**
46   * @param GoogleCloudDialogflowV2beta1SuggestArticlesResponse
47   */
48  public function setSuggestArticlesResponse(GoogleCloudDialogflowV2beta1SuggestArticlesResponse $suggestArticlesResponse)
49  {
50    $this->suggestArticlesResponse = $suggestArticlesResponse;
51  }
52  /**
53   * @return GoogleCloudDialogflowV2beta1SuggestArticlesResponse
54   */
55  public function getSuggestArticlesResponse()
56  {
57    return $this->suggestArticlesResponse;
58  }
59  /**
60   * @param GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse
61   */
62  public function setSuggestFaqAnswersResponse(GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse $suggestFaqAnswersResponse)
63  {
64    $this->suggestFaqAnswersResponse = $suggestFaqAnswersResponse;
65  }
66  /**
67   * @return GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse
68   */
69  public function getSuggestFaqAnswersResponse()
70  {
71    return $this->suggestFaqAnswersResponse;
72  }
73  /**
74   * @param GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse
75   */
76  public function setSuggestSmartRepliesResponse(GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse $suggestSmartRepliesResponse)
77  {
78    $this->suggestSmartRepliesResponse = $suggestSmartRepliesResponse;
79  }
80  /**
81   * @return GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse
82   */
83  public function getSuggestSmartRepliesResponse()
84  {
85    return $this->suggestSmartRepliesResponse;
86  }
87}
88
89// Adding a class alias for backwards compatibility with the previous class name.
90class_alias(GoogleCloudDialogflowV2beta1SuggestionResult::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1SuggestionResult');
91