[e3d4e0a] | 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\HangoutsChat;
|
---|
| 19 |
|
---|
| 20 | class GoogleAppsCardV1FooterWidget extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $buttonListType = GoogleAppsCardV1ButtonList::class;
|
---|
| 23 | protected $buttonListDataType = '';
|
---|
| 24 | protected $dateTimePickerType = GoogleAppsCardV1DateTimePicker::class;
|
---|
| 25 | protected $dateTimePickerDataType = '';
|
---|
| 26 | protected $decoratedTextType = GoogleAppsCardV1DecoratedText::class;
|
---|
| 27 | protected $decoratedTextDataType = '';
|
---|
| 28 | protected $textInputType = GoogleAppsCardV1TextInput::class;
|
---|
| 29 | protected $textInputDataType = '';
|
---|
| 30 | protected $textParagraphType = GoogleAppsCardV1TextParagraph::class;
|
---|
| 31 | protected $textParagraphDataType = '';
|
---|
| 32 |
|
---|
| 33 | /**
|
---|
| 34 | * @param GoogleAppsCardV1ButtonList
|
---|
| 35 | */
|
---|
| 36 | public function setButtonList(GoogleAppsCardV1ButtonList $buttonList)
|
---|
| 37 | {
|
---|
| 38 | $this->buttonList = $buttonList;
|
---|
| 39 | }
|
---|
| 40 | /**
|
---|
| 41 | * @return GoogleAppsCardV1ButtonList
|
---|
| 42 | */
|
---|
| 43 | public function getButtonList()
|
---|
| 44 | {
|
---|
| 45 | return $this->buttonList;
|
---|
| 46 | }
|
---|
| 47 | /**
|
---|
| 48 | * @param GoogleAppsCardV1DateTimePicker
|
---|
| 49 | */
|
---|
| 50 | public function setDateTimePicker(GoogleAppsCardV1DateTimePicker $dateTimePicker)
|
---|
| 51 | {
|
---|
| 52 | $this->dateTimePicker = $dateTimePicker;
|
---|
| 53 | }
|
---|
| 54 | /**
|
---|
| 55 | * @return GoogleAppsCardV1DateTimePicker
|
---|
| 56 | */
|
---|
| 57 | public function getDateTimePicker()
|
---|
| 58 | {
|
---|
| 59 | return $this->dateTimePicker;
|
---|
| 60 | }
|
---|
| 61 | /**
|
---|
| 62 | * @param GoogleAppsCardV1DecoratedText
|
---|
| 63 | */
|
---|
| 64 | public function setDecoratedText(GoogleAppsCardV1DecoratedText $decoratedText)
|
---|
| 65 | {
|
---|
| 66 | $this->decoratedText = $decoratedText;
|
---|
| 67 | }
|
---|
| 68 | /**
|
---|
| 69 | * @return GoogleAppsCardV1DecoratedText
|
---|
| 70 | */
|
---|
| 71 | public function getDecoratedText()
|
---|
| 72 | {
|
---|
| 73 | return $this->decoratedText;
|
---|
| 74 | }
|
---|
| 75 | /**
|
---|
| 76 | * @param GoogleAppsCardV1TextInput
|
---|
| 77 | */
|
---|
| 78 | public function setTextInput(GoogleAppsCardV1TextInput $textInput)
|
---|
| 79 | {
|
---|
| 80 | $this->textInput = $textInput;
|
---|
| 81 | }
|
---|
| 82 | /**
|
---|
| 83 | * @return GoogleAppsCardV1TextInput
|
---|
| 84 | */
|
---|
| 85 | public function getTextInput()
|
---|
| 86 | {
|
---|
| 87 | return $this->textInput;
|
---|
| 88 | }
|
---|
| 89 | /**
|
---|
| 90 | * @param GoogleAppsCardV1TextParagraph
|
---|
| 91 | */
|
---|
| 92 | public function setTextParagraph(GoogleAppsCardV1TextParagraph $textParagraph)
|
---|
| 93 | {
|
---|
| 94 | $this->textParagraph = $textParagraph;
|
---|
| 95 | }
|
---|
| 96 | /**
|
---|
| 97 | * @return GoogleAppsCardV1TextParagraph
|
---|
| 98 | */
|
---|
| 99 | public function getTextParagraph()
|
---|
| 100 | {
|
---|
| 101 | return $this->textParagraph;
|
---|
| 102 | }
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 106 | class_alias(GoogleAppsCardV1FooterWidget::class, 'Google_Service_HangoutsChat_GoogleAppsCardV1FooterWidget');
|
---|