source: vendor/google/apiclient-services/src/MapsPlaces/GoogleMapsPlacesV1EVChargeOptionsConnectorAggregation.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 2.6 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\MapsPlaces;
19
20class GoogleMapsPlacesV1EVChargeOptionsConnectorAggregation extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $availabilityLastUpdateTime;
26 /**
27 * @var int
28 */
29 public $availableCount;
30 /**
31 * @var int
32 */
33 public $count;
34 public $maxChargeRateKw;
35 /**
36 * @var int
37 */
38 public $outOfServiceCount;
39 /**
40 * @var string
41 */
42 public $type;
43
44 /**
45 * @param string
46 */
47 public function setAvailabilityLastUpdateTime($availabilityLastUpdateTime)
48 {
49 $this->availabilityLastUpdateTime = $availabilityLastUpdateTime;
50 }
51 /**
52 * @return string
53 */
54 public function getAvailabilityLastUpdateTime()
55 {
56 return $this->availabilityLastUpdateTime;
57 }
58 /**
59 * @param int
60 */
61 public function setAvailableCount($availableCount)
62 {
63 $this->availableCount = $availableCount;
64 }
65 /**
66 * @return int
67 */
68 public function getAvailableCount()
69 {
70 return $this->availableCount;
71 }
72 /**
73 * @param int
74 */
75 public function setCount($count)
76 {
77 $this->count = $count;
78 }
79 /**
80 * @return int
81 */
82 public function getCount()
83 {
84 return $this->count;
85 }
86 public function setMaxChargeRateKw($maxChargeRateKw)
87 {
88 $this->maxChargeRateKw = $maxChargeRateKw;
89 }
90 public function getMaxChargeRateKw()
91 {
92 return $this->maxChargeRateKw;
93 }
94 /**
95 * @param int
96 */
97 public function setOutOfServiceCount($outOfServiceCount)
98 {
99 $this->outOfServiceCount = $outOfServiceCount;
100 }
101 /**
102 * @return int
103 */
104 public function getOutOfServiceCount()
105 {
106 return $this->outOfServiceCount;
107 }
108 /**
109 * @param string
110 */
111 public function setType($type)
112 {
113 $this->type = $type;
114 }
115 /**
116 * @return string
117 */
118 public function getType()
119 {
120 return $this->type;
121 }
122}
123
124// Adding a class alias for backwards compatibility with the previous class name.
125class_alias(GoogleMapsPlacesV1EVChargeOptionsConnectorAggregation::class, 'Google_Service_MapsPlaces_GoogleMapsPlacesV1EVChargeOptionsConnectorAggregation');
Note: See TracBrowser for help on using the repository browser.