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 AppsDynamiteSharedColumnsColumnWidgets extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $buttonListType = AppsDynamiteSharedButtonList::class;
|
---|
23 | protected $buttonListDataType = '';
|
---|
24 | public $buttonList;
|
---|
25 | protected $dateTimePickerType = AppsDynamiteSharedDateTimePicker::class;
|
---|
26 | protected $dateTimePickerDataType = '';
|
---|
27 | public $dateTimePicker;
|
---|
28 | protected $decoratedTextType = AppsDynamiteSharedDecoratedText::class;
|
---|
29 | protected $decoratedTextDataType = '';
|
---|
30 | public $decoratedText;
|
---|
31 | protected $imageType = AppsDynamiteSharedImage::class;
|
---|
32 | protected $imageDataType = '';
|
---|
33 | public $image;
|
---|
34 | protected $selectionInputType = AppsDynamiteSharedSelectionInput::class;
|
---|
35 | protected $selectionInputDataType = '';
|
---|
36 | public $selectionInput;
|
---|
37 | protected $textInputType = AppsDynamiteSharedTextInput::class;
|
---|
38 | protected $textInputDataType = '';
|
---|
39 | public $textInput;
|
---|
40 | protected $textParagraphType = AppsDynamiteSharedTextParagraph::class;
|
---|
41 | protected $textParagraphDataType = '';
|
---|
42 | public $textParagraph;
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * @param AppsDynamiteSharedButtonList
|
---|
46 | */
|
---|
47 | public function setButtonList(AppsDynamiteSharedButtonList $buttonList)
|
---|
48 | {
|
---|
49 | $this->buttonList = $buttonList;
|
---|
50 | }
|
---|
51 | /**
|
---|
52 | * @return AppsDynamiteSharedButtonList
|
---|
53 | */
|
---|
54 | public function getButtonList()
|
---|
55 | {
|
---|
56 | return $this->buttonList;
|
---|
57 | }
|
---|
58 | /**
|
---|
59 | * @param AppsDynamiteSharedDateTimePicker
|
---|
60 | */
|
---|
61 | public function setDateTimePicker(AppsDynamiteSharedDateTimePicker $dateTimePicker)
|
---|
62 | {
|
---|
63 | $this->dateTimePicker = $dateTimePicker;
|
---|
64 | }
|
---|
65 | /**
|
---|
66 | * @return AppsDynamiteSharedDateTimePicker
|
---|
67 | */
|
---|
68 | public function getDateTimePicker()
|
---|
69 | {
|
---|
70 | return $this->dateTimePicker;
|
---|
71 | }
|
---|
72 | /**
|
---|
73 | * @param AppsDynamiteSharedDecoratedText
|
---|
74 | */
|
---|
75 | public function setDecoratedText(AppsDynamiteSharedDecoratedText $decoratedText)
|
---|
76 | {
|
---|
77 | $this->decoratedText = $decoratedText;
|
---|
78 | }
|
---|
79 | /**
|
---|
80 | * @return AppsDynamiteSharedDecoratedText
|
---|
81 | */
|
---|
82 | public function getDecoratedText()
|
---|
83 | {
|
---|
84 | return $this->decoratedText;
|
---|
85 | }
|
---|
86 | /**
|
---|
87 | * @param AppsDynamiteSharedImage
|
---|
88 | */
|
---|
89 | public function setImage(AppsDynamiteSharedImage $image)
|
---|
90 | {
|
---|
91 | $this->image = $image;
|
---|
92 | }
|
---|
93 | /**
|
---|
94 | * @return AppsDynamiteSharedImage
|
---|
95 | */
|
---|
96 | public function getImage()
|
---|
97 | {
|
---|
98 | return $this->image;
|
---|
99 | }
|
---|
100 | /**
|
---|
101 | * @param AppsDynamiteSharedSelectionInput
|
---|
102 | */
|
---|
103 | public function setSelectionInput(AppsDynamiteSharedSelectionInput $selectionInput)
|
---|
104 | {
|
---|
105 | $this->selectionInput = $selectionInput;
|
---|
106 | }
|
---|
107 | /**
|
---|
108 | * @return AppsDynamiteSharedSelectionInput
|
---|
109 | */
|
---|
110 | public function getSelectionInput()
|
---|
111 | {
|
---|
112 | return $this->selectionInput;
|
---|
113 | }
|
---|
114 | /**
|
---|
115 | * @param AppsDynamiteSharedTextInput
|
---|
116 | */
|
---|
117 | public function setTextInput(AppsDynamiteSharedTextInput $textInput)
|
---|
118 | {
|
---|
119 | $this->textInput = $textInput;
|
---|
120 | }
|
---|
121 | /**
|
---|
122 | * @return AppsDynamiteSharedTextInput
|
---|
123 | */
|
---|
124 | public function getTextInput()
|
---|
125 | {
|
---|
126 | return $this->textInput;
|
---|
127 | }
|
---|
128 | /**
|
---|
129 | * @param AppsDynamiteSharedTextParagraph
|
---|
130 | */
|
---|
131 | public function setTextParagraph(AppsDynamiteSharedTextParagraph $textParagraph)
|
---|
132 | {
|
---|
133 | $this->textParagraph = $textParagraph;
|
---|
134 | }
|
---|
135 | /**
|
---|
136 | * @return AppsDynamiteSharedTextParagraph
|
---|
137 | */
|
---|
138 | public function getTextParagraph()
|
---|
139 | {
|
---|
140 | return $this->textParagraph;
|
---|
141 | }
|
---|
142 | }
|
---|
143 |
|
---|
144 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
145 | class_alias(AppsDynamiteSharedColumnsColumnWidgets::class, 'Google_Service_CloudSearch_AppsDynamiteSharedColumnsColumnWidgets');
|
---|