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\CloudSearch;
|
---|
19 |
|
---|
20 | class AppsDynamiteSharedCard extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'sections';
|
---|
23 | protected $cardActionsType = AppsDynamiteSharedCardCardAction::class;
|
---|
24 | protected $cardActionsDataType = 'array';
|
---|
25 | public $cardActions;
|
---|
26 | protected $headerType = AppsDynamiteSharedCardCardHeader::class;
|
---|
27 | protected $headerDataType = '';
|
---|
28 | public $header;
|
---|
29 | /**
|
---|
30 | * @var string
|
---|
31 | */
|
---|
32 | public $name;
|
---|
33 | protected $sectionsType = AppsDynamiteSharedCardSection::class;
|
---|
34 | protected $sectionsDataType = 'array';
|
---|
35 | public $sections;
|
---|
36 |
|
---|
37 | /**
|
---|
38 | * @param AppsDynamiteSharedCardCardAction[]
|
---|
39 | */
|
---|
40 | public function setCardActions($cardActions)
|
---|
41 | {
|
---|
42 | $this->cardActions = $cardActions;
|
---|
43 | }
|
---|
44 | /**
|
---|
45 | * @return AppsDynamiteSharedCardCardAction[]
|
---|
46 | */
|
---|
47 | public function getCardActions()
|
---|
48 | {
|
---|
49 | return $this->cardActions;
|
---|
50 | }
|
---|
51 | /**
|
---|
52 | * @param AppsDynamiteSharedCardCardHeader
|
---|
53 | */
|
---|
54 | public function setHeader(AppsDynamiteSharedCardCardHeader $header)
|
---|
55 | {
|
---|
56 | $this->header = $header;
|
---|
57 | }
|
---|
58 | /**
|
---|
59 | * @return AppsDynamiteSharedCardCardHeader
|
---|
60 | */
|
---|
61 | public function getHeader()
|
---|
62 | {
|
---|
63 | return $this->header;
|
---|
64 | }
|
---|
65 | /**
|
---|
66 | * @param string
|
---|
67 | */
|
---|
68 | public function setName($name)
|
---|
69 | {
|
---|
70 | $this->name = $name;
|
---|
71 | }
|
---|
72 | /**
|
---|
73 | * @return string
|
---|
74 | */
|
---|
75 | public function getName()
|
---|
76 | {
|
---|
77 | return $this->name;
|
---|
78 | }
|
---|
79 | /**
|
---|
80 | * @param AppsDynamiteSharedCardSection[]
|
---|
81 | */
|
---|
82 | public function setSections($sections)
|
---|
83 | {
|
---|
84 | $this->sections = $sections;
|
---|
85 | }
|
---|
86 | /**
|
---|
87 | * @return AppsDynamiteSharedCardSection[]
|
---|
88 | */
|
---|
89 | public function getSections()
|
---|
90 | {
|
---|
91 | return $this->sections;
|
---|
92 | }
|
---|
93 | }
|
---|
94 |
|
---|
95 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
96 | class_alias(AppsDynamiteSharedCard::class, 'Google_Service_CloudSearch_AppsDynamiteSharedCard');
|
---|