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 GoogleCloudRetailV2Interval extends \Google\Model 21{ 22 public $exclusiveMaximum; 23 public $exclusiveMinimum; 24 public $maximum; 25 public $minimum; 26 27 public function setExclusiveMaximum($exclusiveMaximum) 28 { 29 $this->exclusiveMaximum = $exclusiveMaximum; 30 } 31 public function getExclusiveMaximum() 32 { 33 return $this->exclusiveMaximum; 34 } 35 public function setExclusiveMinimum($exclusiveMinimum) 36 { 37 $this->exclusiveMinimum = $exclusiveMinimum; 38 } 39 public function getExclusiveMinimum() 40 { 41 return $this->exclusiveMinimum; 42 } 43 public function setMaximum($maximum) 44 { 45 $this->maximum = $maximum; 46 } 47 public function getMaximum() 48 { 49 return $this->maximum; 50 } 51 public function setMinimum($minimum) 52 { 53 $this->minimum = $minimum; 54 } 55 public function getMinimum() 56 { 57 return $this->minimum; 58 } 59} 60 61// Adding a class alias for backwards compatibility with the previous class name. 62class_alias(GoogleCloudRetailV2Interval::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2Interval'); 63