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
18class Google_Service_SemanticTile_Geometry extends Google_Collection
19{
20  protected $collection_key = 'modeledVolumes';
21  protected $areasType = 'Google_Service_SemanticTile_Area';
22  protected $areasDataType = 'array';
23  protected $extrudedAreasType = 'Google_Service_SemanticTile_ExtrudedArea';
24  protected $extrudedAreasDataType = 'array';
25  protected $linesType = 'Google_Service_SemanticTile_Line';
26  protected $linesDataType = 'array';
27  protected $modeledVolumesType = 'Google_Service_SemanticTile_ModeledVolume';
28  protected $modeledVolumesDataType = 'array';
29
30  /**
31   * @param Google_Service_SemanticTile_Area[]
32   */
33  public function setAreas($areas)
34  {
35    $this->areas = $areas;
36  }
37  /**
38   * @return Google_Service_SemanticTile_Area[]
39   */
40  public function getAreas()
41  {
42    return $this->areas;
43  }
44  /**
45   * @param Google_Service_SemanticTile_ExtrudedArea[]
46   */
47  public function setExtrudedAreas($extrudedAreas)
48  {
49    $this->extrudedAreas = $extrudedAreas;
50  }
51  /**
52   * @return Google_Service_SemanticTile_ExtrudedArea[]
53   */
54  public function getExtrudedAreas()
55  {
56    return $this->extrudedAreas;
57  }
58  /**
59   * @param Google_Service_SemanticTile_Line[]
60   */
61  public function setLines($lines)
62  {
63    $this->lines = $lines;
64  }
65  /**
66   * @return Google_Service_SemanticTile_Line[]
67   */
68  public function getLines()
69  {
70    return $this->lines;
71  }
72  /**
73   * @param Google_Service_SemanticTile_ModeledVolume[]
74   */
75  public function setModeledVolumes($modeledVolumes)
76  {
77    $this->modeledVolumes = $modeledVolumes;
78  }
79  /**
80   * @return Google_Service_SemanticTile_ModeledVolume[]
81   */
82  public function getModeledVolumes()
83  {
84    return $this->modeledVolumes;
85  }
86}
87