source: vendor/google/apiclient-services/src/CloudSearch/AppsDynamiteSharedActivityFeedAnnotationData.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: 2.9 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 AppsDynamiteSharedActivityFeedAnnotationData extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $activityFeedMessageCreateTime;
26 protected $activityFeedMessageIdType = MessageId::class;
27 protected $activityFeedMessageIdDataType = '';
28 protected $chatItemType = AppsDynamiteSharedChatItem::class;
29 protected $chatItemDataType = '';
30 protected $sharedUserInfoType = UserInfo::class;
31 protected $sharedUserInfoDataType = '';
32 protected $userInfoType = AppsDynamiteSharedActivityFeedAnnotationDataUserInfo::class;
33 protected $userInfoDataType = '';
34
35 /**
36 * @param string
37 */
38 public function setActivityFeedMessageCreateTime($activityFeedMessageCreateTime)
39 {
40 $this->activityFeedMessageCreateTime = $activityFeedMessageCreateTime;
41 }
42 /**
43 * @return string
44 */
45 public function getActivityFeedMessageCreateTime()
46 {
47 return $this->activityFeedMessageCreateTime;
48 }
49 /**
50 * @param MessageId
51 */
52 public function setActivityFeedMessageId(MessageId $activityFeedMessageId)
53 {
54 $this->activityFeedMessageId = $activityFeedMessageId;
55 }
56 /**
57 * @return MessageId
58 */
59 public function getActivityFeedMessageId()
60 {
61 return $this->activityFeedMessageId;
62 }
63 /**
64 * @param AppsDynamiteSharedChatItem
65 */
66 public function setChatItem(AppsDynamiteSharedChatItem $chatItem)
67 {
68 $this->chatItem = $chatItem;
69 }
70 /**
71 * @return AppsDynamiteSharedChatItem
72 */
73 public function getChatItem()
74 {
75 return $this->chatItem;
76 }
77 /**
78 * @param UserInfo
79 */
80 public function setSharedUserInfo(UserInfo $sharedUserInfo)
81 {
82 $this->sharedUserInfo = $sharedUserInfo;
83 }
84 /**
85 * @return UserInfo
86 */
87 public function getSharedUserInfo()
88 {
89 return $this->sharedUserInfo;
90 }
91 /**
92 * @param AppsDynamiteSharedActivityFeedAnnotationDataUserInfo
93 */
94 public function setUserInfo(AppsDynamiteSharedActivityFeedAnnotationDataUserInfo $userInfo)
95 {
96 $this->userInfo = $userInfo;
97 }
98 /**
99 * @return AppsDynamiteSharedActivityFeedAnnotationDataUserInfo
100 */
101 public function getUserInfo()
102 {
103 return $this->userInfo;
104 }
105}
106
107// Adding a class alias for backwards compatibility with the previous class name.
108class_alias(AppsDynamiteSharedActivityFeedAnnotationData::class, 'Google_Service_CloudSearch_AppsDynamiteSharedActivityFeedAnnotationData');
Note: See TracBrowser for help on using the repository browser.