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_DriveActivity_ActionDetail extends Google_Model
19{
20  protected $commentType = 'Google_Service_DriveActivity_Comment';
21  protected $commentDataType = '';
22  protected $createType = 'Google_Service_DriveActivity_Create';
23  protected $createDataType = '';
24  protected $deleteType = 'Google_Service_DriveActivity_Delete';
25  protected $deleteDataType = '';
26  protected $dlpChangeType = 'Google_Service_DriveActivity_DataLeakPreventionChange';
27  protected $dlpChangeDataType = '';
28  protected $editType = 'Google_Service_DriveActivity_Edit';
29  protected $editDataType = '';
30  protected $moveType = 'Google_Service_DriveActivity_Move';
31  protected $moveDataType = '';
32  protected $permissionChangeType = 'Google_Service_DriveActivity_PermissionChange';
33  protected $permissionChangeDataType = '';
34  protected $referenceType = 'Google_Service_DriveActivity_ApplicationReference';
35  protected $referenceDataType = '';
36  protected $renameType = 'Google_Service_DriveActivity_Rename';
37  protected $renameDataType = '';
38  protected $restoreType = 'Google_Service_DriveActivity_Restore';
39  protected $restoreDataType = '';
40  protected $settingsChangeType = 'Google_Service_DriveActivity_SettingsChange';
41  protected $settingsChangeDataType = '';
42
43  /**
44   * @param Google_Service_DriveActivity_Comment
45   */
46  public function setComment(Google_Service_DriveActivity_Comment $comment)
47  {
48    $this->comment = $comment;
49  }
50  /**
51   * @return Google_Service_DriveActivity_Comment
52   */
53  public function getComment()
54  {
55    return $this->comment;
56  }
57  /**
58   * @param Google_Service_DriveActivity_Create
59   */
60  public function setCreate(Google_Service_DriveActivity_Create $create)
61  {
62    $this->create = $create;
63  }
64  /**
65   * @return Google_Service_DriveActivity_Create
66   */
67  public function getCreate()
68  {
69    return $this->create;
70  }
71  /**
72   * @param Google_Service_DriveActivity_Delete
73   */
74  public function setDelete(Google_Service_DriveActivity_Delete $delete)
75  {
76    $this->delete = $delete;
77  }
78  /**
79   * @return Google_Service_DriveActivity_Delete
80   */
81  public function getDelete()
82  {
83    return $this->delete;
84  }
85  /**
86   * @param Google_Service_DriveActivity_DataLeakPreventionChange
87   */
88  public function setDlpChange(Google_Service_DriveActivity_DataLeakPreventionChange $dlpChange)
89  {
90    $this->dlpChange = $dlpChange;
91  }
92  /**
93   * @return Google_Service_DriveActivity_DataLeakPreventionChange
94   */
95  public function getDlpChange()
96  {
97    return $this->dlpChange;
98  }
99  /**
100   * @param Google_Service_DriveActivity_Edit
101   */
102  public function setEdit(Google_Service_DriveActivity_Edit $edit)
103  {
104    $this->edit = $edit;
105  }
106  /**
107   * @return Google_Service_DriveActivity_Edit
108   */
109  public function getEdit()
110  {
111    return $this->edit;
112  }
113  /**
114   * @param Google_Service_DriveActivity_Move
115   */
116  public function setMove(Google_Service_DriveActivity_Move $move)
117  {
118    $this->move = $move;
119  }
120  /**
121   * @return Google_Service_DriveActivity_Move
122   */
123  public function getMove()
124  {
125    return $this->move;
126  }
127  /**
128   * @param Google_Service_DriveActivity_PermissionChange
129   */
130  public function setPermissionChange(Google_Service_DriveActivity_PermissionChange $permissionChange)
131  {
132    $this->permissionChange = $permissionChange;
133  }
134  /**
135   * @return Google_Service_DriveActivity_PermissionChange
136   */
137  public function getPermissionChange()
138  {
139    return $this->permissionChange;
140  }
141  /**
142   * @param Google_Service_DriveActivity_ApplicationReference
143   */
144  public function setReference(Google_Service_DriveActivity_ApplicationReference $reference)
145  {
146    $this->reference = $reference;
147  }
148  /**
149   * @return Google_Service_DriveActivity_ApplicationReference
150   */
151  public function getReference()
152  {
153    return $this->reference;
154  }
155  /**
156   * @param Google_Service_DriveActivity_Rename
157   */
158  public function setRename(Google_Service_DriveActivity_Rename $rename)
159  {
160    $this->rename = $rename;
161  }
162  /**
163   * @return Google_Service_DriveActivity_Rename
164   */
165  public function getRename()
166  {
167    return $this->rename;
168  }
169  /**
170   * @param Google_Service_DriveActivity_Restore
171   */
172  public function setRestore(Google_Service_DriveActivity_Restore $restore)
173  {
174    $this->restore = $restore;
175  }
176  /**
177   * @return Google_Service_DriveActivity_Restore
178   */
179  public function getRestore()
180  {
181    return $this->restore;
182  }
183  /**
184   * @param Google_Service_DriveActivity_SettingsChange
185   */
186  public function setSettingsChange(Google_Service_DriveActivity_SettingsChange $settingsChange)
187  {
188    $this->settingsChange = $settingsChange;
189  }
190  /**
191   * @return Google_Service_DriveActivity_SettingsChange
192   */
193  public function getSettingsChange()
194  {
195    return $this->settingsChange;
196  }
197}
198