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
18class Google_Service_AlertCenter_GmailMessageInfo extends Google_Collection
19{
20  protected $collection_key = 'attachmentsSha256Hash';
21  public $attachmentsSha256Hash;
22  public $date;
23  public $md5HashMessageBody;
24  public $md5HashSubject;
25  public $messageBodySnippet;
26  public $messageId;
27  public $recipient;
28  public $subjectText;
29
30  public function setAttachmentsSha256Hash($attachmentsSha256Hash)
31  {
32    $this->attachmentsSha256Hash = $attachmentsSha256Hash;
33  }
34  public function getAttachmentsSha256Hash()
35  {
36    return $this->attachmentsSha256Hash;
37  }
38  public function setDate($date)
39  {
40    $this->date = $date;
41  }
42  public function getDate()
43  {
44    return $this->date;
45  }
46  public function setMd5HashMessageBody($md5HashMessageBody)
47  {
48    $this->md5HashMessageBody = $md5HashMessageBody;
49  }
50  public function getMd5HashMessageBody()
51  {
52    return $this->md5HashMessageBody;
53  }
54  public function setMd5HashSubject($md5HashSubject)
55  {
56    $this->md5HashSubject = $md5HashSubject;
57  }
58  public function getMd5HashSubject()
59  {
60    return $this->md5HashSubject;
61  }
62  public function setMessageBodySnippet($messageBodySnippet)
63  {
64    $this->messageBodySnippet = $messageBodySnippet;
65  }
66  public function getMessageBodySnippet()
67  {
68    return $this->messageBodySnippet;
69  }
70  public function setMessageId($messageId)
71  {
72    $this->messageId = $messageId;
73  }
74  public function getMessageId()
75  {
76    return $this->messageId;
77  }
78  public function setRecipient($recipient)
79  {
80    $this->recipient = $recipient;
81  }
82  public function getRecipient()
83  {
84    return $this->recipient;
85  }
86  public function setSubjectText($subjectText)
87  {
88    $this->subjectText = $subjectText;
89  }
90  public function getSubjectText()
91  {
92    return $this->subjectText;
93  }
94}
95