Last change
on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago |
Upload project files
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Line | |
---|
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 |
|
---|
18 | namespace Google\Service\DiscoveryEngine;
|
---|
19 |
|
---|
20 | class GoogleCloudDiscoveryengineV1betaQualityMetricsTopkMetrics extends \Google\Model
|
---|
21 | {
|
---|
22 | public $top1;
|
---|
23 | public $top10;
|
---|
24 | public $top3;
|
---|
25 | public $top5;
|
---|
26 |
|
---|
27 | public function setTop1($top1)
|
---|
28 | {
|
---|
29 | $this->top1 = $top1;
|
---|
30 | }
|
---|
31 | public function getTop1()
|
---|
32 | {
|
---|
33 | return $this->top1;
|
---|
34 | }
|
---|
35 | public function setTop10($top10)
|
---|
36 | {
|
---|
37 | $this->top10 = $top10;
|
---|
38 | }
|
---|
39 | public function getTop10()
|
---|
40 | {
|
---|
41 | return $this->top10;
|
---|
42 | }
|
---|
43 | public function setTop3($top3)
|
---|
44 | {
|
---|
45 | $this->top3 = $top3;
|
---|
46 | }
|
---|
47 | public function getTop3()
|
---|
48 | {
|
---|
49 | return $this->top3;
|
---|
50 | }
|
---|
51 | public function setTop5($top5)
|
---|
52 | {
|
---|
53 | $this->top5 = $top5;
|
---|
54 | }
|
---|
55 | public function getTop5()
|
---|
56 | {
|
---|
57 | return $this->top5;
|
---|
58 | }
|
---|
59 | }
|
---|
60 |
|
---|
61 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
62 | class_alias(GoogleCloudDiscoveryengineV1betaQualityMetricsTopkMetrics::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1betaQualityMetricsTopkMetrics');
|
---|
Note:
See
TracBrowser
for help on using the repository browser.