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_Reportcard_Mute extends Google_Collection
19{
20  protected $collection_key = 'tag';
21  public $consumer;
22  public $createdBy;
23  public $creationTimeMs;
24  public $creator;
25  public $expiryTimeMs;
26  public $groupKey;
27  public $id;
28  public $kind;
29  public $reason;
30  public $sourceKey;
31  public $tag;
32  protected $targetType = 'Google_Service_Reportcard_Target';
33  protected $targetDataType = '';
34  public $text;
35
36  public function setConsumer($consumer)
37  {
38    $this->consumer = $consumer;
39  }
40  public function getConsumer()
41  {
42    return $this->consumer;
43  }
44  public function setCreatedBy($createdBy)
45  {
46    $this->createdBy = $createdBy;
47  }
48  public function getCreatedBy()
49  {
50    return $this->createdBy;
51  }
52  public function setCreationTimeMs($creationTimeMs)
53  {
54    $this->creationTimeMs = $creationTimeMs;
55  }
56  public function getCreationTimeMs()
57  {
58    return $this->creationTimeMs;
59  }
60  public function setCreator($creator)
61  {
62    $this->creator = $creator;
63  }
64  public function getCreator()
65  {
66    return $this->creator;
67  }
68  public function setExpiryTimeMs($expiryTimeMs)
69  {
70    $this->expiryTimeMs = $expiryTimeMs;
71  }
72  public function getExpiryTimeMs()
73  {
74    return $this->expiryTimeMs;
75  }
76  public function setGroupKey($groupKey)
77  {
78    $this->groupKey = $groupKey;
79  }
80  public function getGroupKey()
81  {
82    return $this->groupKey;
83  }
84  public function setId($id)
85  {
86    $this->id = $id;
87  }
88  public function getId()
89  {
90    return $this->id;
91  }
92  public function setKind($kind)
93  {
94    $this->kind = $kind;
95  }
96  public function getKind()
97  {
98    return $this->kind;
99  }
100  public function setReason($reason)
101  {
102    $this->reason = $reason;
103  }
104  public function getReason()
105  {
106    return $this->reason;
107  }
108  public function setSourceKey($sourceKey)
109  {
110    $this->sourceKey = $sourceKey;
111  }
112  public function getSourceKey()
113  {
114    return $this->sourceKey;
115  }
116  public function setTag($tag)
117  {
118    $this->tag = $tag;
119  }
120  public function getTag()
121  {
122    return $this->tag;
123  }
124  public function setTarget(Google_Service_Reportcard_Target $target)
125  {
126    $this->target = $target;
127  }
128  public function getTarget()
129  {
130    return $this->target;
131  }
132  public function setText($text)
133  {
134    $this->text = $text;
135  }
136  public function getText()
137  {
138    return $this->text;
139  }
140}
141