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_PlayableLocations_GoogleMapsPlayablelocationsV3SamplePlayableLocation extends Google_Collection
19{
20  protected $collection_key = 'types';
21  protected $centerPointType = 'Google_Service_PlayableLocations_GoogleTypeLatLng';
22  protected $centerPointDataType = '';
23  public $name;
24  public $placeId;
25  public $plusCode;
26  protected $snappedPointType = 'Google_Service_PlayableLocations_GoogleTypeLatLng';
27  protected $snappedPointDataType = '';
28  public $types;
29
30  /**
31   * @param Google_Service_PlayableLocations_GoogleTypeLatLng
32   */
33  public function setCenterPoint(Google_Service_PlayableLocations_GoogleTypeLatLng $centerPoint)
34  {
35    $this->centerPoint = $centerPoint;
36  }
37  /**
38   * @return Google_Service_PlayableLocations_GoogleTypeLatLng
39   */
40  public function getCenterPoint()
41  {
42    return $this->centerPoint;
43  }
44  public function setName($name)
45  {
46    $this->name = $name;
47  }
48  public function getName()
49  {
50    return $this->name;
51  }
52  public function setPlaceId($placeId)
53  {
54    $this->placeId = $placeId;
55  }
56  public function getPlaceId()
57  {
58    return $this->placeId;
59  }
60  public function setPlusCode($plusCode)
61  {
62    $this->plusCode = $plusCode;
63  }
64  public function getPlusCode()
65  {
66    return $this->plusCode;
67  }
68  /**
69   * @param Google_Service_PlayableLocations_GoogleTypeLatLng
70   */
71  public function setSnappedPoint(Google_Service_PlayableLocations_GoogleTypeLatLng $snappedPoint)
72  {
73    $this->snappedPoint = $snappedPoint;
74  }
75  /**
76   * @return Google_Service_PlayableLocations_GoogleTypeLatLng
77   */
78  public function getSnappedPoint()
79  {
80    return $this->snappedPoint;
81  }
82  public function setTypes($types)
83  {
84    $this->types = $types;
85  }
86  public function getTypes()
87  {
88    return $this->types;
89  }
90}
91