source: vendor/google/apiclient-services/src/CloudRetail/GoogleCloudRetailV2SearchResponseFacetFacetValue.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload new project files

  • Property mode set to 100644
File size: 2.1 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
18namespace Google\Service\CloudRetail;
19
20class GoogleCloudRetailV2SearchResponseFacetFacetValue extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $count;
26 protected $intervalType = GoogleCloudRetailV2Interval::class;
27 protected $intervalDataType = '';
28 public $maxValue;
29 public $minValue;
30 /**
31 * @var string
32 */
33 public $value;
34
35 /**
36 * @param string
37 */
38 public function setCount($count)
39 {
40 $this->count = $count;
41 }
42 /**
43 * @return string
44 */
45 public function getCount()
46 {
47 return $this->count;
48 }
49 /**
50 * @param GoogleCloudRetailV2Interval
51 */
52 public function setInterval(GoogleCloudRetailV2Interval $interval)
53 {
54 $this->interval = $interval;
55 }
56 /**
57 * @return GoogleCloudRetailV2Interval
58 */
59 public function getInterval()
60 {
61 return $this->interval;
62 }
63 public function setMaxValue($maxValue)
64 {
65 $this->maxValue = $maxValue;
66 }
67 public function getMaxValue()
68 {
69 return $this->maxValue;
70 }
71 public function setMinValue($minValue)
72 {
73 $this->minValue = $minValue;
74 }
75 public function getMinValue()
76 {
77 return $this->minValue;
78 }
79 /**
80 * @param string
81 */
82 public function setValue($value)
83 {
84 $this->value = $value;
85 }
86 /**
87 * @return string
88 */
89 public function getValue()
90 {
91 return $this->value;
92 }
93}
94
95// Adding a class alias for backwards compatibility with the previous class name.
96class_alias(GoogleCloudRetailV2SearchResponseFacetFacetValue::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2SearchResponseFacetFacetValue');
Note: See TracBrowser for help on using the repository browser.