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_Dfareporting_ChangeLog extends Google_Model
19{
20  public $accountId;
21  public $action;
22  public $changeTime;
23  public $fieldName;
24  public $id;
25  public $kind;
26  public $newValue;
27  public $objectId;
28  public $objectType;
29  public $oldValue;
30  public $subaccountId;
31  public $transactionId;
32  public $userProfileId;
33  public $userProfileName;
34
35  public function setAccountId($accountId)
36  {
37    $this->accountId = $accountId;
38  }
39  public function getAccountId()
40  {
41    return $this->accountId;
42  }
43  public function setAction($action)
44  {
45    $this->action = $action;
46  }
47  public function getAction()
48  {
49    return $this->action;
50  }
51  public function setChangeTime($changeTime)
52  {
53    $this->changeTime = $changeTime;
54  }
55  public function getChangeTime()
56  {
57    return $this->changeTime;
58  }
59  public function setFieldName($fieldName)
60  {
61    $this->fieldName = $fieldName;
62  }
63  public function getFieldName()
64  {
65    return $this->fieldName;
66  }
67  public function setId($id)
68  {
69    $this->id = $id;
70  }
71  public function getId()
72  {
73    return $this->id;
74  }
75  public function setKind($kind)
76  {
77    $this->kind = $kind;
78  }
79  public function getKind()
80  {
81    return $this->kind;
82  }
83  public function setNewValue($newValue)
84  {
85    $this->newValue = $newValue;
86  }
87  public function getNewValue()
88  {
89    return $this->newValue;
90  }
91  public function setObjectId($objectId)
92  {
93    $this->objectId = $objectId;
94  }
95  public function getObjectId()
96  {
97    return $this->objectId;
98  }
99  public function setObjectType($objectType)
100  {
101    $this->objectType = $objectType;
102  }
103  public function getObjectType()
104  {
105    return $this->objectType;
106  }
107  public function setOldValue($oldValue)
108  {
109    $this->oldValue = $oldValue;
110  }
111  public function getOldValue()
112  {
113    return $this->oldValue;
114  }
115  public function setSubaccountId($subaccountId)
116  {
117    $this->subaccountId = $subaccountId;
118  }
119  public function getSubaccountId()
120  {
121    return $this->subaccountId;
122  }
123  public function setTransactionId($transactionId)
124  {
125    $this->transactionId = $transactionId;
126  }
127  public function getTransactionId()
128  {
129    return $this->transactionId;
130  }
131  public function setUserProfileId($userProfileId)
132  {
133    $this->userProfileId = $userProfileId;
134  }
135  public function getUserProfileId()
136  {
137    return $this->userProfileId;
138  }
139  public function setUserProfileName($userProfileName)
140  {
141    $this->userProfileName = $userProfileName;
142  }
143  public function getUserProfileName()
144  {
145    return $this->userProfileName;
146  }
147}
148