source: vendor/google/apiclient-services/src/CloudSearch/ChatContentExtension.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: 5.1 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 ChatContentExtension extends \Google\Collection
21{
22 protected $collection_key = 'annotation';
23 protected $annotationType = EventAnnotation::class;
24 protected $annotationDataType = 'array';
25 protected $dynamitePlaceholderMetadataType = ChatConserverDynamitePlaceholderMetadata::class;
26 protected $dynamitePlaceholderMetadataDataType = '';
27 /**
28 * @var string
29 */
30 public $eventOtrStatus;
31 protected $groupLinkSharingModificationEventType = GroupLinkSharingModificationEvent::class;
32 protected $groupLinkSharingModificationEventDataType = '';
33 protected $hangoutEventType = HangoutEvent::class;
34 protected $hangoutEventDataType = '';
35 protected $inviteAcceptedEventType = InviteAcceptedEvent::class;
36 protected $inviteAcceptedEventDataType = '';
37 protected $membershipChangeEventType = MembershipChangeEvent::class;
38 protected $membershipChangeEventDataType = '';
39 protected $otrChatMessageEventType = OtrChatMessageEvent::class;
40 protected $otrChatMessageEventDataType = '';
41 protected $otrModificationEventType = OtrModificationEvent::class;
42 protected $otrModificationEventDataType = '';
43 protected $renameEventType = RenameEvent::class;
44 protected $renameEventDataType = '';
45
46 /**
47 * @param EventAnnotation[]
48 */
49 public function setAnnotation($annotation)
50 {
51 $this->annotation = $annotation;
52 }
53 /**
54 * @return EventAnnotation[]
55 */
56 public function getAnnotation()
57 {
58 return $this->annotation;
59 }
60 /**
61 * @param ChatConserverDynamitePlaceholderMetadata
62 */
63 public function setDynamitePlaceholderMetadata(ChatConserverDynamitePlaceholderMetadata $dynamitePlaceholderMetadata)
64 {
65 $this->dynamitePlaceholderMetadata = $dynamitePlaceholderMetadata;
66 }
67 /**
68 * @return ChatConserverDynamitePlaceholderMetadata
69 */
70 public function getDynamitePlaceholderMetadata()
71 {
72 return $this->dynamitePlaceholderMetadata;
73 }
74 /**
75 * @param string
76 */
77 public function setEventOtrStatus($eventOtrStatus)
78 {
79 $this->eventOtrStatus = $eventOtrStatus;
80 }
81 /**
82 * @return string
83 */
84 public function getEventOtrStatus()
85 {
86 return $this->eventOtrStatus;
87 }
88 /**
89 * @param GroupLinkSharingModificationEvent
90 */
91 public function setGroupLinkSharingModificationEvent(GroupLinkSharingModificationEvent $groupLinkSharingModificationEvent)
92 {
93 $this->groupLinkSharingModificationEvent = $groupLinkSharingModificationEvent;
94 }
95 /**
96 * @return GroupLinkSharingModificationEvent
97 */
98 public function getGroupLinkSharingModificationEvent()
99 {
100 return $this->groupLinkSharingModificationEvent;
101 }
102 /**
103 * @param HangoutEvent
104 */
105 public function setHangoutEvent(HangoutEvent $hangoutEvent)
106 {
107 $this->hangoutEvent = $hangoutEvent;
108 }
109 /**
110 * @return HangoutEvent
111 */
112 public function getHangoutEvent()
113 {
114 return $this->hangoutEvent;
115 }
116 /**
117 * @param InviteAcceptedEvent
118 */
119 public function setInviteAcceptedEvent(InviteAcceptedEvent $inviteAcceptedEvent)
120 {
121 $this->inviteAcceptedEvent = $inviteAcceptedEvent;
122 }
123 /**
124 * @return InviteAcceptedEvent
125 */
126 public function getInviteAcceptedEvent()
127 {
128 return $this->inviteAcceptedEvent;
129 }
130 /**
131 * @param MembershipChangeEvent
132 */
133 public function setMembershipChangeEvent(MembershipChangeEvent $membershipChangeEvent)
134 {
135 $this->membershipChangeEvent = $membershipChangeEvent;
136 }
137 /**
138 * @return MembershipChangeEvent
139 */
140 public function getMembershipChangeEvent()
141 {
142 return $this->membershipChangeEvent;
143 }
144 /**
145 * @param OtrChatMessageEvent
146 */
147 public function setOtrChatMessageEvent(OtrChatMessageEvent $otrChatMessageEvent)
148 {
149 $this->otrChatMessageEvent = $otrChatMessageEvent;
150 }
151 /**
152 * @return OtrChatMessageEvent
153 */
154 public function getOtrChatMessageEvent()
155 {
156 return $this->otrChatMessageEvent;
157 }
158 /**
159 * @param OtrModificationEvent
160 */
161 public function setOtrModificationEvent(OtrModificationEvent $otrModificationEvent)
162 {
163 $this->otrModificationEvent = $otrModificationEvent;
164 }
165 /**
166 * @return OtrModificationEvent
167 */
168 public function getOtrModificationEvent()
169 {
170 return $this->otrModificationEvent;
171 }
172 /**
173 * @param RenameEvent
174 */
175 public function setRenameEvent(RenameEvent $renameEvent)
176 {
177 $this->renameEvent = $renameEvent;
178 }
179 /**
180 * @return RenameEvent
181 */
182 public function getRenameEvent()
183 {
184 return $this->renameEvent;
185 }
186}
187
188// Adding a class alias for backwards compatibility with the previous class name.
189class_alias(ChatContentExtension::class, 'Google_Service_CloudSearch_ChatContentExtension');
Note: See TracBrowser for help on using the repository browser.