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_MyBusinessPlaceActions_PlaceActionLink extends Google_Model
19{
20  public $createTime;
21  public $isEditable;
22  public $isPreferred;
23  public $name;
24  public $placeActionType;
25  public $providerType;
26  public $updateTime;
27  public $uri;
28
29  public function setCreateTime($createTime)
30  {
31    $this->createTime = $createTime;
32  }
33  public function getCreateTime()
34  {
35    return $this->createTime;
36  }
37  public function setIsEditable($isEditable)
38  {
39    $this->isEditable = $isEditable;
40  }
41  public function getIsEditable()
42  {
43    return $this->isEditable;
44  }
45  public function setIsPreferred($isPreferred)
46  {
47    $this->isPreferred = $isPreferred;
48  }
49  public function getIsPreferred()
50  {
51    return $this->isPreferred;
52  }
53  public function setName($name)
54  {
55    $this->name = $name;
56  }
57  public function getName()
58  {
59    return $this->name;
60  }
61  public function setPlaceActionType($placeActionType)
62  {
63    $this->placeActionType = $placeActionType;
64  }
65  public function getPlaceActionType()
66  {
67    return $this->placeActionType;
68  }
69  public function setProviderType($providerType)
70  {
71    $this->providerType = $providerType;
72  }
73  public function getProviderType()
74  {
75    return $this->providerType;
76  }
77  public function setUpdateTime($updateTime)
78  {
79    $this->updateTime = $updateTime;
80  }
81  public function getUpdateTime()
82  {
83    return $this->updateTime;
84  }
85  public function setUri($uri)
86  {
87    $this->uri = $uri;
88  }
89  public function getUri()
90  {
91    return $this->uri;
92  }
93}
94