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 HostAppActionMarkup extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $calendarActionType = CalendarClientActionMarkup::class;
|
---|
23 | protected $calendarActionDataType = '';
|
---|
24 | protected $chatActionType = ChatClientActionMarkup::class;
|
---|
25 | protected $chatActionDataType = '';
|
---|
26 | protected $driveActionType = DriveClientActionMarkup::class;
|
---|
27 | protected $driveActionDataType = '';
|
---|
28 | protected $editorActionType = EditorClientActionMarkup::class;
|
---|
29 | protected $editorActionDataType = '';
|
---|
30 | protected $gmailActionType = GmailClientActionMarkup::class;
|
---|
31 | protected $gmailActionDataType = '';
|
---|
32 | protected $sheetsActionType = SheetsClientActionMarkup::class;
|
---|
33 | protected $sheetsActionDataType = '';
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * @param CalendarClientActionMarkup
|
---|
37 | */
|
---|
38 | public function setCalendarAction(CalendarClientActionMarkup $calendarAction)
|
---|
39 | {
|
---|
40 | $this->calendarAction = $calendarAction;
|
---|
41 | }
|
---|
42 | /**
|
---|
43 | * @return CalendarClientActionMarkup
|
---|
44 | */
|
---|
45 | public function getCalendarAction()
|
---|
46 | {
|
---|
47 | return $this->calendarAction;
|
---|
48 | }
|
---|
49 | /**
|
---|
50 | * @param ChatClientActionMarkup
|
---|
51 | */
|
---|
52 | public function setChatAction(ChatClientActionMarkup $chatAction)
|
---|
53 | {
|
---|
54 | $this->chatAction = $chatAction;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * @return ChatClientActionMarkup
|
---|
58 | */
|
---|
59 | public function getChatAction()
|
---|
60 | {
|
---|
61 | return $this->chatAction;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * @param DriveClientActionMarkup
|
---|
65 | */
|
---|
66 | public function setDriveAction(DriveClientActionMarkup $driveAction)
|
---|
67 | {
|
---|
68 | $this->driveAction = $driveAction;
|
---|
69 | }
|
---|
70 | /**
|
---|
71 | * @return DriveClientActionMarkup
|
---|
72 | */
|
---|
73 | public function getDriveAction()
|
---|
74 | {
|
---|
75 | return $this->driveAction;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @param EditorClientActionMarkup
|
---|
79 | */
|
---|
80 | public function setEditorAction(EditorClientActionMarkup $editorAction)
|
---|
81 | {
|
---|
82 | $this->editorAction = $editorAction;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @return EditorClientActionMarkup
|
---|
86 | */
|
---|
87 | public function getEditorAction()
|
---|
88 | {
|
---|
89 | return $this->editorAction;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @param GmailClientActionMarkup
|
---|
93 | */
|
---|
94 | public function setGmailAction(GmailClientActionMarkup $gmailAction)
|
---|
95 | {
|
---|
96 | $this->gmailAction = $gmailAction;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @return GmailClientActionMarkup
|
---|
100 | */
|
---|
101 | public function getGmailAction()
|
---|
102 | {
|
---|
103 | return $this->gmailAction;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @param SheetsClientActionMarkup
|
---|
107 | */
|
---|
108 | public function setSheetsAction(SheetsClientActionMarkup $sheetsAction)
|
---|
109 | {
|
---|
110 | $this->sheetsAction = $sheetsAction;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @return SheetsClientActionMarkup
|
---|
114 | */
|
---|
115 | public function getSheetsAction()
|
---|
116 | {
|
---|
117 | return $this->sheetsAction;
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
122 | class_alias(HostAppActionMarkup::class, 'Google_Service_CloudSearch_HostAppActionMarkup');
|
---|