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_Reports_Channel extends Google_Model
19{
20  public $address;
21  public $expiration;
22  public $id;
23  public $kind;
24  public $params;
25  public $payload;
26  public $resourceId;
27  public $resourceUri;
28  public $token;
29  public $type;
30
31  public function setAddress($address)
32  {
33    $this->address = $address;
34  }
35  public function getAddress()
36  {
37    return $this->address;
38  }
39  public function setExpiration($expiration)
40  {
41    $this->expiration = $expiration;
42  }
43  public function getExpiration()
44  {
45    return $this->expiration;
46  }
47  public function setId($id)
48  {
49    $this->id = $id;
50  }
51  public function getId()
52  {
53    return $this->id;
54  }
55  public function setKind($kind)
56  {
57    $this->kind = $kind;
58  }
59  public function getKind()
60  {
61    return $this->kind;
62  }
63  public function setParams($params)
64  {
65    $this->params = $params;
66  }
67  public function getParams()
68  {
69    return $this->params;
70  }
71  public function setPayload($payload)
72  {
73    $this->payload = $payload;
74  }
75  public function getPayload()
76  {
77    return $this->payload;
78  }
79  public function setResourceId($resourceId)
80  {
81    $this->resourceId = $resourceId;
82  }
83  public function getResourceId()
84  {
85    return $this->resourceId;
86  }
87  public function setResourceUri($resourceUri)
88  {
89    $this->resourceUri = $resourceUri;
90  }
91  public function getResourceUri()
92  {
93    return $this->resourceUri;
94  }
95  public function setToken($token)
96  {
97    $this->token = $token;
98  }
99  public function getToken()
100  {
101    return $this->token;
102  }
103  public function setType($type)
104  {
105    $this->type = $type;
106  }
107  public function getType()
108  {
109    return $this->type;
110  }
111}
112