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 AppsDynamiteStorageWidget extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $buttonListType = AppsDynamiteStorageButtonList::class;
|
---|
23 | protected $buttonListDataType = '';
|
---|
24 | protected $columnsType = AppsDynamiteStorageColumns::class;
|
---|
25 | protected $columnsDataType = '';
|
---|
26 | protected $dateTimePickerType = AppsDynamiteStorageDateTimePicker::class;
|
---|
27 | protected $dateTimePickerDataType = '';
|
---|
28 | protected $decoratedTextType = AppsDynamiteStorageDecoratedText::class;
|
---|
29 | protected $decoratedTextDataType = '';
|
---|
30 | protected $dividerType = AppsDynamiteStorageDivider::class;
|
---|
31 | protected $dividerDataType = '';
|
---|
32 | protected $gridType = AppsDynamiteStorageGrid::class;
|
---|
33 | protected $gridDataType = '';
|
---|
34 | /**
|
---|
35 | * @var string
|
---|
36 | */
|
---|
37 | public $horizontalAlignment;
|
---|
38 | protected $imageType = AppsDynamiteStorageImage::class;
|
---|
39 | protected $imageDataType = '';
|
---|
40 | protected $selectionInputType = AppsDynamiteStorageSelectionInput::class;
|
---|
41 | protected $selectionInputDataType = '';
|
---|
42 | protected $textInputType = AppsDynamiteStorageTextInput::class;
|
---|
43 | protected $textInputDataType = '';
|
---|
44 | protected $textParagraphType = AppsDynamiteStorageTextParagraph::class;
|
---|
45 | protected $textParagraphDataType = '';
|
---|
46 |
|
---|
47 | /**
|
---|
48 | * @param AppsDynamiteStorageButtonList
|
---|
49 | */
|
---|
50 | public function setButtonList(AppsDynamiteStorageButtonList $buttonList)
|
---|
51 | {
|
---|
52 | $this->buttonList = $buttonList;
|
---|
53 | }
|
---|
54 | /**
|
---|
55 | * @return AppsDynamiteStorageButtonList
|
---|
56 | */
|
---|
57 | public function getButtonList()
|
---|
58 | {
|
---|
59 | return $this->buttonList;
|
---|
60 | }
|
---|
61 | /**
|
---|
62 | * @param AppsDynamiteStorageColumns
|
---|
63 | */
|
---|
64 | public function setColumns(AppsDynamiteStorageColumns $columns)
|
---|
65 | {
|
---|
66 | $this->columns = $columns;
|
---|
67 | }
|
---|
68 | /**
|
---|
69 | * @return AppsDynamiteStorageColumns
|
---|
70 | */
|
---|
71 | public function getColumns()
|
---|
72 | {
|
---|
73 | return $this->columns;
|
---|
74 | }
|
---|
75 | /**
|
---|
76 | * @param AppsDynamiteStorageDateTimePicker
|
---|
77 | */
|
---|
78 | public function setDateTimePicker(AppsDynamiteStorageDateTimePicker $dateTimePicker)
|
---|
79 | {
|
---|
80 | $this->dateTimePicker = $dateTimePicker;
|
---|
81 | }
|
---|
82 | /**
|
---|
83 | * @return AppsDynamiteStorageDateTimePicker
|
---|
84 | */
|
---|
85 | public function getDateTimePicker()
|
---|
86 | {
|
---|
87 | return $this->dateTimePicker;
|
---|
88 | }
|
---|
89 | /**
|
---|
90 | * @param AppsDynamiteStorageDecoratedText
|
---|
91 | */
|
---|
92 | public function setDecoratedText(AppsDynamiteStorageDecoratedText $decoratedText)
|
---|
93 | {
|
---|
94 | $this->decoratedText = $decoratedText;
|
---|
95 | }
|
---|
96 | /**
|
---|
97 | * @return AppsDynamiteStorageDecoratedText
|
---|
98 | */
|
---|
99 | public function getDecoratedText()
|
---|
100 | {
|
---|
101 | return $this->decoratedText;
|
---|
102 | }
|
---|
103 | /**
|
---|
104 | * @param AppsDynamiteStorageDivider
|
---|
105 | */
|
---|
106 | public function setDivider(AppsDynamiteStorageDivider $divider)
|
---|
107 | {
|
---|
108 | $this->divider = $divider;
|
---|
109 | }
|
---|
110 | /**
|
---|
111 | * @return AppsDynamiteStorageDivider
|
---|
112 | */
|
---|
113 | public function getDivider()
|
---|
114 | {
|
---|
115 | return $this->divider;
|
---|
116 | }
|
---|
117 | /**
|
---|
118 | * @param AppsDynamiteStorageGrid
|
---|
119 | */
|
---|
120 | public function setGrid(AppsDynamiteStorageGrid $grid)
|
---|
121 | {
|
---|
122 | $this->grid = $grid;
|
---|
123 | }
|
---|
124 | /**
|
---|
125 | * @return AppsDynamiteStorageGrid
|
---|
126 | */
|
---|
127 | public function getGrid()
|
---|
128 | {
|
---|
129 | return $this->grid;
|
---|
130 | }
|
---|
131 | /**
|
---|
132 | * @param string
|
---|
133 | */
|
---|
134 | public function setHorizontalAlignment($horizontalAlignment)
|
---|
135 | {
|
---|
136 | $this->horizontalAlignment = $horizontalAlignment;
|
---|
137 | }
|
---|
138 | /**
|
---|
139 | * @return string
|
---|
140 | */
|
---|
141 | public function getHorizontalAlignment()
|
---|
142 | {
|
---|
143 | return $this->horizontalAlignment;
|
---|
144 | }
|
---|
145 | /**
|
---|
146 | * @param AppsDynamiteStorageImage
|
---|
147 | */
|
---|
148 | public function setImage(AppsDynamiteStorageImage $image)
|
---|
149 | {
|
---|
150 | $this->image = $image;
|
---|
151 | }
|
---|
152 | /**
|
---|
153 | * @return AppsDynamiteStorageImage
|
---|
154 | */
|
---|
155 | public function getImage()
|
---|
156 | {
|
---|
157 | return $this->image;
|
---|
158 | }
|
---|
159 | /**
|
---|
160 | * @param AppsDynamiteStorageSelectionInput
|
---|
161 | */
|
---|
162 | public function setSelectionInput(AppsDynamiteStorageSelectionInput $selectionInput)
|
---|
163 | {
|
---|
164 | $this->selectionInput = $selectionInput;
|
---|
165 | }
|
---|
166 | /**
|
---|
167 | * @return AppsDynamiteStorageSelectionInput
|
---|
168 | */
|
---|
169 | public function getSelectionInput()
|
---|
170 | {
|
---|
171 | return $this->selectionInput;
|
---|
172 | }
|
---|
173 | /**
|
---|
174 | * @param AppsDynamiteStorageTextInput
|
---|
175 | */
|
---|
176 | public function setTextInput(AppsDynamiteStorageTextInput $textInput)
|
---|
177 | {
|
---|
178 | $this->textInput = $textInput;
|
---|
179 | }
|
---|
180 | /**
|
---|
181 | * @return AppsDynamiteStorageTextInput
|
---|
182 | */
|
---|
183 | public function getTextInput()
|
---|
184 | {
|
---|
185 | return $this->textInput;
|
---|
186 | }
|
---|
187 | /**
|
---|
188 | * @param AppsDynamiteStorageTextParagraph
|
---|
189 | */
|
---|
190 | public function setTextParagraph(AppsDynamiteStorageTextParagraph $textParagraph)
|
---|
191 | {
|
---|
192 | $this->textParagraph = $textParagraph;
|
---|
193 | }
|
---|
194 | /**
|
---|
195 | * @return AppsDynamiteStorageTextParagraph
|
---|
196 | */
|
---|
197 | public function getTextParagraph()
|
---|
198 | {
|
---|
199 | return $this->textParagraph;
|
---|
200 | }
|
---|
201 | }
|
---|
202 |
|
---|
203 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
204 | class_alias(AppsDynamiteStorageWidget::class, 'Google_Service_CloudSearch_AppsDynamiteStorageWidget');
|
---|