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 |
|
---|
18 | namespace Google\Service\Ideahub;
|
---|
19 |
|
---|
20 | class GoogleSearchIdeahubV1alphaIdeaActivity extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'topics';
|
---|
23 | public $ideas;
|
---|
24 | public $name;
|
---|
25 | public $topics;
|
---|
26 | public $type;
|
---|
27 | public $uri;
|
---|
28 |
|
---|
29 | public function setIdeas($ideas)
|
---|
30 | {
|
---|
31 | $this->ideas = $ideas;
|
---|
32 | }
|
---|
33 | public function getIdeas()
|
---|
34 | {
|
---|
35 | return $this->ideas;
|
---|
36 | }
|
---|
37 | public function setName($name)
|
---|
38 | {
|
---|
39 | $this->name = $name;
|
---|
40 | }
|
---|
41 | public function getName()
|
---|
42 | {
|
---|
43 | return $this->name;
|
---|
44 | }
|
---|
45 | public function setTopics($topics)
|
---|
46 | {
|
---|
47 | $this->topics = $topics;
|
---|
48 | }
|
---|
49 | public function getTopics()
|
---|
50 | {
|
---|
51 | return $this->topics;
|
---|
52 | }
|
---|
53 | public function setType($type)
|
---|
54 | {
|
---|
55 | $this->type = $type;
|
---|
56 | }
|
---|
57 | public function getType()
|
---|
58 | {
|
---|
59 | return $this->type;
|
---|
60 | }
|
---|
61 | public function setUri($uri)
|
---|
62 | {
|
---|
63 | $this->uri = $uri;
|
---|
64 | }
|
---|
65 | public function getUri()
|
---|
66 | {
|
---|
67 | return $this->uri;
|
---|
68 | }
|
---|
69 | }
|
---|
70 |
|
---|
71 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
72 | class_alias(GoogleSearchIdeahubV1alphaIdeaActivity::class, 'Google_Service_Ideahub_GoogleSearchIdeahubV1alphaIdeaActivity');
|
---|