source: vendor/google/apiclient-services/src/AlertCenter/GmailMessageInfo.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 3.5 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\AlertCenter;
19
20class GmailMessageInfo extends \Google\Collection
21{
22 protected $collection_key = 'attachmentsSha256Hash';
23 /**
24 * @var string[]
25 */
26 public $attachmentsSha256Hash;
27 /**
28 * @var string
29 */
30 public $date;
31 /**
32 * @var string
33 */
34 public $md5HashMessageBody;
35 /**
36 * @var string
37 */
38 public $md5HashSubject;
39 /**
40 * @var string
41 */
42 public $messageBodySnippet;
43 /**
44 * @var string
45 */
46 public $messageId;
47 /**
48 * @var string
49 */
50 public $recipient;
51 /**
52 * @var string
53 */
54 public $sentTime;
55 /**
56 * @var string
57 */
58 public $subjectText;
59
60 /**
61 * @param string[]
62 */
63 public function setAttachmentsSha256Hash($attachmentsSha256Hash)
64 {
65 $this->attachmentsSha256Hash = $attachmentsSha256Hash;
66 }
67 /**
68 * @return string[]
69 */
70 public function getAttachmentsSha256Hash()
71 {
72 return $this->attachmentsSha256Hash;
73 }
74 /**
75 * @param string
76 */
77 public function setDate($date)
78 {
79 $this->date = $date;
80 }
81 /**
82 * @return string
83 */
84 public function getDate()
85 {
86 return $this->date;
87 }
88 /**
89 * @param string
90 */
91 public function setMd5HashMessageBody($md5HashMessageBody)
92 {
93 $this->md5HashMessageBody = $md5HashMessageBody;
94 }
95 /**
96 * @return string
97 */
98 public function getMd5HashMessageBody()
99 {
100 return $this->md5HashMessageBody;
101 }
102 /**
103 * @param string
104 */
105 public function setMd5HashSubject($md5HashSubject)
106 {
107 $this->md5HashSubject = $md5HashSubject;
108 }
109 /**
110 * @return string
111 */
112 public function getMd5HashSubject()
113 {
114 return $this->md5HashSubject;
115 }
116 /**
117 * @param string
118 */
119 public function setMessageBodySnippet($messageBodySnippet)
120 {
121 $this->messageBodySnippet = $messageBodySnippet;
122 }
123 /**
124 * @return string
125 */
126 public function getMessageBodySnippet()
127 {
128 return $this->messageBodySnippet;
129 }
130 /**
131 * @param string
132 */
133 public function setMessageId($messageId)
134 {
135 $this->messageId = $messageId;
136 }
137 /**
138 * @return string
139 */
140 public function getMessageId()
141 {
142 return $this->messageId;
143 }
144 /**
145 * @param string
146 */
147 public function setRecipient($recipient)
148 {
149 $this->recipient = $recipient;
150 }
151 /**
152 * @return string
153 */
154 public function getRecipient()
155 {
156 return $this->recipient;
157 }
158 /**
159 * @param string
160 */
161 public function setSentTime($sentTime)
162 {
163 $this->sentTime = $sentTime;
164 }
165 /**
166 * @return string
167 */
168 public function getSentTime()
169 {
170 return $this->sentTime;
171 }
172 /**
173 * @param string
174 */
175 public function setSubjectText($subjectText)
176 {
177 $this->subjectText = $subjectText;
178 }
179 /**
180 * @return string
181 */
182 public function getSubjectText()
183 {
184 return $this->subjectText;
185 }
186}
187
188// Adding a class alias for backwards compatibility with the previous class name.
189class_alias(GmailMessageInfo::class, 'Google_Service_AlertCenter_GmailMessageInfo');
Note: See TracBrowser for help on using the repository browser.