source: vendor/google/apiclient-services/src/SemanticTile/FeatureTile.php

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: 2.3 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\SemanticTile;
19
20class FeatureTile extends \Google\Collection
21{
22 protected $collection_key = 'providers';
23 protected $coordinatesType = TileCoordinates::class;
24 protected $coordinatesDataType = '';
25 protected $featuresType = Feature::class;
26 protected $featuresDataType = 'array';
27 public $name;
28 protected $providersType = ProviderInfo::class;
29 protected $providersDataType = 'array';
30 public $status;
31 public $versionId;
32
33 /**
34 * @param TileCoordinates
35 */
36 public function setCoordinates(TileCoordinates $coordinates)
37 {
38 $this->coordinates = $coordinates;
39 }
40 /**
41 * @return TileCoordinates
42 */
43 public function getCoordinates()
44 {
45 return $this->coordinates;
46 }
47 /**
48 * @param Feature[]
49 */
50 public function setFeatures($features)
51 {
52 $this->features = $features;
53 }
54 /**
55 * @return Feature[]
56 */
57 public function getFeatures()
58 {
59 return $this->features;
60 }
61 public function setName($name)
62 {
63 $this->name = $name;
64 }
65 public function getName()
66 {
67 return $this->name;
68 }
69 /**
70 * @param ProviderInfo[]
71 */
72 public function setProviders($providers)
73 {
74 $this->providers = $providers;
75 }
76 /**
77 * @return ProviderInfo[]
78 */
79 public function getProviders()
80 {
81 return $this->providers;
82 }
83 public function setStatus($status)
84 {
85 $this->status = $status;
86 }
87 public function getStatus()
88 {
89 return $this->status;
90 }
91 public function setVersionId($versionId)
92 {
93 $this->versionId = $versionId;
94 }
95 public function getVersionId()
96 {
97 return $this->versionId;
98 }
99}
100
101// Adding a class alias for backwards compatibility with the previous class name.
102class_alias(FeatureTile::class, 'Google_Service_SemanticTile_FeatureTile');
Note: See TracBrowser for help on using the repository browser.