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
18class Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Match extends Google_Model
19{
20  public $confidence;
21  public $event;
22  protected $intentType = 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Intent';
23  protected $intentDataType = '';
24  public $matchType;
25  public $parameters;
26  public $resolvedInput;
27
28  public function setConfidence($confidence)
29  {
30    $this->confidence = $confidence;
31  }
32  public function getConfidence()
33  {
34    return $this->confidence;
35  }
36  public function setEvent($event)
37  {
38    $this->event = $event;
39  }
40  public function getEvent()
41  {
42    return $this->event;
43  }
44  /**
45   * @param Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Intent
46   */
47  public function setIntent(Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Intent $intent)
48  {
49    $this->intent = $intent;
50  }
51  /**
52   * @return Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Intent
53   */
54  public function getIntent()
55  {
56    return $this->intent;
57  }
58  public function setMatchType($matchType)
59  {
60    $this->matchType = $matchType;
61  }
62  public function getMatchType()
63  {
64    return $this->matchType;
65  }
66  public function setParameters($parameters)
67  {
68    $this->parameters = $parameters;
69  }
70  public function getParameters()
71  {
72    return $this->parameters;
73  }
74  public function setResolvedInput($resolvedInput)
75  {
76    $this->resolvedInput = $resolvedInput;
77  }
78  public function getResolvedInput()
79  {
80    return $this->resolvedInput;
81  }
82}
83