source: vendor/google/apiclient-services/src/CloudSearch/AppsDynamiteStorageColumnsColumnWidgets.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.8 KB
Line 
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
18namespace Google\Service\CloudSearch;
19
20class AppsDynamiteStorageColumnsColumnWidgets extends \Google\Model
21{
22 protected $buttonListType = AppsDynamiteStorageButtonList::class;
23 protected $buttonListDataType = '';
24 protected $dateTimePickerType = AppsDynamiteStorageDateTimePicker::class;
25 protected $dateTimePickerDataType = '';
26 protected $decoratedTextType = AppsDynamiteStorageDecoratedText::class;
27 protected $decoratedTextDataType = '';
28 protected $imageType = AppsDynamiteStorageImage::class;
29 protected $imageDataType = '';
30 protected $selectionInputType = AppsDynamiteStorageSelectionInput::class;
31 protected $selectionInputDataType = '';
32 protected $textInputType = AppsDynamiteStorageTextInput::class;
33 protected $textInputDataType = '';
34 protected $textParagraphType = AppsDynamiteStorageTextParagraph::class;
35 protected $textParagraphDataType = '';
36
37 /**
38 * @param AppsDynamiteStorageButtonList
39 */
40 public function setButtonList(AppsDynamiteStorageButtonList $buttonList)
41 {
42 $this->buttonList = $buttonList;
43 }
44 /**
45 * @return AppsDynamiteStorageButtonList
46 */
47 public function getButtonList()
48 {
49 return $this->buttonList;
50 }
51 /**
52 * @param AppsDynamiteStorageDateTimePicker
53 */
54 public function setDateTimePicker(AppsDynamiteStorageDateTimePicker $dateTimePicker)
55 {
56 $this->dateTimePicker = $dateTimePicker;
57 }
58 /**
59 * @return AppsDynamiteStorageDateTimePicker
60 */
61 public function getDateTimePicker()
62 {
63 return $this->dateTimePicker;
64 }
65 /**
66 * @param AppsDynamiteStorageDecoratedText
67 */
68 public function setDecoratedText(AppsDynamiteStorageDecoratedText $decoratedText)
69 {
70 $this->decoratedText = $decoratedText;
71 }
72 /**
73 * @return AppsDynamiteStorageDecoratedText
74 */
75 public function getDecoratedText()
76 {
77 return $this->decoratedText;
78 }
79 /**
80 * @param AppsDynamiteStorageImage
81 */
82 public function setImage(AppsDynamiteStorageImage $image)
83 {
84 $this->image = $image;
85 }
86 /**
87 * @return AppsDynamiteStorageImage
88 */
89 public function getImage()
90 {
91 return $this->image;
92 }
93 /**
94 * @param AppsDynamiteStorageSelectionInput
95 */
96 public function setSelectionInput(AppsDynamiteStorageSelectionInput $selectionInput)
97 {
98 $this->selectionInput = $selectionInput;
99 }
100 /**
101 * @return AppsDynamiteStorageSelectionInput
102 */
103 public function getSelectionInput()
104 {
105 return $this->selectionInput;
106 }
107 /**
108 * @param AppsDynamiteStorageTextInput
109 */
110 public function setTextInput(AppsDynamiteStorageTextInput $textInput)
111 {
112 $this->textInput = $textInput;
113 }
114 /**
115 * @return AppsDynamiteStorageTextInput
116 */
117 public function getTextInput()
118 {
119 return $this->textInput;
120 }
121 /**
122 * @param AppsDynamiteStorageTextParagraph
123 */
124 public function setTextParagraph(AppsDynamiteStorageTextParagraph $textParagraph)
125 {
126 $this->textParagraph = $textParagraph;
127 }
128 /**
129 * @return AppsDynamiteStorageTextParagraph
130 */
131 public function getTextParagraph()
132 {
133 return $this->textParagraph;
134 }
135}
136
137// Adding a class alias for backwards compatibility with the previous class name.
138class_alias(AppsDynamiteStorageColumnsColumnWidgets::class, 'Google_Service_CloudSearch_AppsDynamiteStorageColumnsColumnWidgets');
Note: See TracBrowser for help on using the repository browser.