blob: 3fa321a5bb272379eb70cb8a48f261f7802ce0f8 [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="driveactivity_v2.html">Drive Activity API</a> . <a href="driveactivity_v2.activity.html">activity</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#query">query(body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070079<p class="firstline">Query past activity in Google Drive.</p>
80<p class="toc_element">
81 <code><a href="#query_next">query_next(previous_request, previous_response)</a></code></p>
82<p class="firstline">Retrieves the next page of results.</p>
83<h3>Method Details</h3>
84<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070085 <code class="details" id="query">query(body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070086 <pre>Query past activity in Google Drive.
87
88Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070089 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070090 The object takes the form of:
91
92{ # The request message for querying Drive activity.
Bu Sun Kim65020912020-05-20 12:08:20 -070093 &quot;itemName&quot;: &quot;A String&quot;, # Return activities for this Drive item. The format is
94 # &quot;items/ITEM_ID&quot;.
95 &quot;pageSize&quot;: 42, # The miminum number of activities desired in the response; the server will
Dan O'Mearadd494642020-05-01 07:42:23 -070096 # attempt to return at least this quanitity. The server may also return fewer
97 # activities if it has a partial response ready before the request times out.
98 # If not set, a default value is used.
Bu Sun Kim65020912020-05-20 12:08:20 -070099 &quot;consolidationStrategy&quot;: { # How the individual activities are consolidated. A set of activities may be # Details on how to consolidate related actions that make up the activity. If
100 # not set, then related actions are not consolidated.
101 # consolidated into one combined activity if they are related in some way, such
102 # as one actor performing the same action on multiple targets, or multiple
103 # actors performing the same action on a single target. The strategy defines
104 # the rules for which activities are related.
105 &quot;none&quot;: { # A strategy which does no consolidation of individual activities. # The individual activities are not consolidated.
106 },
107 &quot;legacy&quot;: { # A strategy which consolidates activities using the grouping rules from the # The individual activities are consolidated using the legacy strategy.
108 # legacy V1 Activity API. Similar actions occurring within a window of time
109 # can be grouped across multiple targets (such as moving a set of files at
110 # once) or multiple actors (such as several users editing the same item).
111 # Grouping rules for this strategy are specific to each type of action.
112 },
113 },
114 &quot;filter&quot;: &quot;A String&quot;, # The filtering for items returned from this query request. The format of the
115 # filter string is a sequence of expressions, joined by an optional &quot;AND&quot;,
116 # where each expression is of the form &quot;field operator value&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700117 #
118 # Supported fields:
119 #
Dan O'Mearadd494642020-05-01 07:42:23 -0700120 # - &lt;tt&gt;time&lt;/tt&gt;: Uses numerical operators on date values either in
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700121 # terms of milliseconds since Jan 1, 1970 or in RFC 3339 format.
122 # Examples:
Dan O'Mearadd494642020-05-01 07:42:23 -0700123 # - &lt;tt&gt;time &gt; 1452409200000 AND time &lt;= 1492812924310&lt;/tt&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 # - &lt;tt&gt;time &gt;= &quot;2016-01-10T01:02:03-05:00&quot;&lt;/tt&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700125 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 # - &lt;tt&gt;detail.action_detail_case&lt;/tt&gt;: Uses the &quot;has&quot; operator (:) and
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700127 # either a singular value or a list of allowed action types enclosed in
128 # parentheses.
129 # Examples:
Dan O'Mearadd494642020-05-01 07:42:23 -0700130 # - &lt;tt&gt;detail.action_detail_case: RENAME&lt;/tt&gt;
131 # - &lt;tt&gt;detail.action_detail_case:(CREATE EDIT)&lt;/tt&gt;
132 # - &lt;tt&gt;-detail.action_detail_case:MOVE&lt;/tt&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700133 &quot;ancestorName&quot;: &quot;A String&quot;, # Return activities for this Drive folder and all children and descendants.
134 # The format is &quot;items/ITEM_ID&quot;.
135 &quot;pageToken&quot;: &quot;A String&quot;, # The token identifying which page of results to return. Set this to the
Dan O'Mearadd494642020-05-01 07:42:23 -0700136 # next_page_token value returned from a previous query to obtain the
137 # following page of results. If not set, the first page of results will be
138 # returned.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700139 }
140
141 x__xgafv: string, V1 error format.
142 Allowed values
143 1 - v1 error format
144 2 - v2 error format
145
146Returns:
147 An object of the form:
148
149 { # Response message for querying Drive activity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700150 &quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700151 # empty if there are no more results in the list.
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 &quot;activities&quot;: [ # List of activity requested.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700153 { # A single Drive activity comprising one or more Actions by one or more
154 # Actors on one or more Targets. Some Action groupings occur spontaneously,
155 # such as moving an item into a shared folder triggering a permission change.
156 # Other groupings of related Actions, such as multiple Actors editing one item
157 # or moving multiple files into a new folder, are controlled by the selection
158 # of a ConsolidationStrategy in the QueryDriveActivityRequest.
Bu Sun Kim65020912020-05-20 12:08:20 -0700159 &quot;targets&quot;: [ # All Google Drive objects this activity is about (e.g. file, folder, drive).
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700160 # This represents the state of the target immediately after the actions
161 # occurred.
162 { # Information about the target of activity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700163 &quot;teamDrive&quot;: { # This item is deprecated; please see `Drive` instead. # This field is deprecated; please use the `drive` field instead.
164 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `Drive.name` instead.
165 &quot;root&quot;: { # A Drive item, such as a file or folder. # This field is deprecated; please see `Drive.root` instead.
166 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
167 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
168 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
169 },
170 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
171 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
172 },
173 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
Dan O'Mearadd494642020-05-01 07:42:23 -0700174 # folder.
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700176 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700177 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700178 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700179 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
180 # https://developers.google.com/drive/v3/web/mime-types.
181 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
182 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
183 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
184 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
185 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700186 # ID for this resource name.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700187 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700188 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
189 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
190 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
191 },
192 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
193 &quot;knownUser&quot;: { # A known user. # A known user.
194 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
195 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
196 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700197 # https://developers.google.com/people/.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700198 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700199 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
200 },
201 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
Dan O'Mearadd494642020-05-01 07:42:23 -0700202 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700203 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700204 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
205 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
206 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
207 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700208 },
209 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700210 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `Drive.title` instead.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700211 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700212 &quot;fileComment&quot;: { # A comment on a file. # The target is a comment on a Drive file.
213 &quot;legacyDiscussionId&quot;: &quot;A String&quot;, # The discussion thread to which the comment was added. This identifier is an
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700214 # opaque string compatible with the Drive API and references the first
215 # comment in a discussion; see
216 # https://developers.google.com/drive/v3/reference/comments/get
Bu Sun Kim65020912020-05-20 12:08:20 -0700217 &quot;linkToDiscussion&quot;: &quot;A String&quot;, # The link to the discussion thread containing this comment, for example,
218 # &quot;https://docs.google.com/DOCUMENT_ID/edit?disco=THREAD_ID&quot;.
219 &quot;parent&quot;: { # A Drive item, such as a file or folder. # The Drive item containing this comment.
220 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
221 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
222 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
223 },
224 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
225 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
226 },
227 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
228 # folder.
229 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
230 },
231 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
232 },
233 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
234 # https://developers.google.com/drive/v3/web/mime-types.
235 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
236 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
237 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
238 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
239 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
240 # ID for this resource name.
241 },
242 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
243 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
244 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
245 },
246 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
247 &quot;knownUser&quot;: { # A known user. # A known user.
248 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
249 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
250 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
251 # https://developers.google.com/people/.
252 },
253 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
254 },
255 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
256 },
257 },
258 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
259 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
260 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
261 },
262 },
263 },
264 &quot;legacyCommentId&quot;: &quot;A String&quot;, # The comment in the discussion thread. This identifier is an opaque string
Dan O'Mearadd494642020-05-01 07:42:23 -0700265 # compatible with the Drive API; see
266 # https://developers.google.com/drive/v3/reference/comments/get
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700267 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700268 &quot;driveItem&quot;: { # A Drive item, such as a file or folder. # The target is a Drive item.
269 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
270 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
271 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
272 },
273 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
274 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
275 },
276 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
Dan O'Mearadd494642020-05-01 07:42:23 -0700277 # folder.
Bu Sun Kim65020912020-05-20 12:08:20 -0700278 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700279 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700280 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700281 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700282 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
283 # https://developers.google.com/drive/v3/web/mime-types.
284 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
285 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
286 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
287 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
288 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700289 # ID for this resource name.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700290 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700291 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
292 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
293 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
294 },
295 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
296 &quot;knownUser&quot;: { # A known user. # A known user.
297 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
298 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
299 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700300 # https://developers.google.com/people/.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700301 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700302 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
303 },
304 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
Dan O'Mearadd494642020-05-01 07:42:23 -0700305 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700306 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700307 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
308 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
309 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
310 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700311 },
312 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700313 &quot;drive&quot;: { # Information about a shared drive. # The target is a shared drive.
314 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
315 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700316 # ID for this resource name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700317 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
318 &quot;root&quot;: { # A Drive item, such as a file or folder. # The root of this shared drive.
319 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
320 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
321 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
322 },
323 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
324 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
325 },
326 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
327 # folder.
328 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
329 },
330 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
331 },
332 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
333 # https://developers.google.com/drive/v3/web/mime-types.
334 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
335 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
336 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
337 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
338 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
339 # ID for this resource name.
340 },
341 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
342 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
343 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
344 },
345 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
346 &quot;knownUser&quot;: { # A known user. # A known user.
347 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
348 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
349 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
350 # https://developers.google.com/people/.
351 },
352 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
353 },
354 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
355 },
356 },
357 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
358 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
359 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
360 },
361 },
362 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700363 },
364 },
365 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700366 &quot;primaryActionDetail&quot;: { # Data describing the type and additional information of an action. # Key information about the primary action for this activity. This is either
367 # representative, or the most important, of all actions in the activity,
368 # according to the ConsolidationStrategy in the request.
369 &quot;comment&quot;: { # A change about comments on an object. # A change about comments was made.
370 &quot;suggestion&quot;: { # A suggestion. # A change on a suggestion.
371 &quot;subtype&quot;: &quot;A String&quot;, # The sub-type of this event.
372 },
373 &quot;assignment&quot;: { # A comment with an assignment. # A change on an assignment.
374 &quot;subtype&quot;: &quot;A String&quot;, # The sub-type of this event.
375 &quot;assignedUser&quot;: { # Information about an end user. # The user to whom the comment was assigned.
376 &quot;knownUser&quot;: { # A known user. # A known user.
377 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
378 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
379 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
380 # https://developers.google.com/people/.
381 },
382 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
383 },
384 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
385 },
386 },
387 },
388 &quot;post&quot;: { # A regular posted comment. # A change on a regular posted comment.
389 &quot;subtype&quot;: &quot;A String&quot;, # The sub-type of this event.
390 },
391 &quot;mentionedUsers&quot;: [ # Users who are mentioned in this comment.
392 { # Information about an end user.
393 &quot;knownUser&quot;: { # A known user. # A known user.
394 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
395 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
396 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
397 # https://developers.google.com/people/.
398 },
399 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
400 },
401 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
402 },
403 },
404 ],
405 },
406 &quot;delete&quot;: { # An object was deleted. # An object was deleted.
407 &quot;type&quot;: &quot;A String&quot;, # The type of delete action taken.
408 },
409 &quot;restore&quot;: { # A deleted object was restored. # A deleted object was restored.
410 &quot;type&quot;: &quot;A String&quot;, # The type of restore action taken.
411 },
412 &quot;create&quot;: { # An object was created. # An object was created.
413 &quot;copy&quot;: { # An object was created by copying an existing object. # If present, indicates the object was created by copying an existing Drive
414 # object.
415 &quot;originalObject&quot;: { # A lightweight reference to the target of activity. # The the original object.
416 &quot;driveItem&quot;: { # A lightweight reference to a Drive item, such as a file or folder. # The target is a Drive item.
417 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
418 # folder.
419 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
420 },
421 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
422 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
423 },
424 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
425 },
426 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
427 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
428 },
429 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
430 },
431 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
432 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
433 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
434 },
435 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The target is a shared drive.
436 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
437 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
438 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
439 # ID for this resource name.
440 },
441 },
442 },
443 &quot;new&quot;: { # An object was created from scratch. # If present, indicates the object was newly created (e.g. as a blank
444 # document), not derived from a Drive object or external object.
445 },
446 &quot;upload&quot;: { # An object was uploaded into Drive. # If present, indicates the object originated externally and was uploaded
447 # to Drive.
448 },
449 },
450 &quot;move&quot;: { # An object was moved. # An object was moved.
451 &quot;addedParents&quot;: [ # The added parent object(s).
452 { # A lightweight reference to the target of activity.
453 &quot;driveItem&quot;: { # A lightweight reference to a Drive item, such as a file or folder. # The target is a Drive item.
454 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
455 # folder.
456 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
457 },
458 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
459 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
460 },
461 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
462 },
463 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
464 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
465 },
466 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
467 },
468 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
469 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
470 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
471 },
472 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The target is a shared drive.
473 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
474 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
475 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
476 # ID for this resource name.
477 },
478 },
479 ],
480 &quot;removedParents&quot;: [ # The removed parent object(s).
481 { # A lightweight reference to the target of activity.
482 &quot;driveItem&quot;: { # A lightweight reference to a Drive item, such as a file or folder. # The target is a Drive item.
483 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
484 # folder.
485 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
486 },
487 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
488 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
489 },
490 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
491 },
492 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
493 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
494 },
495 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
496 },
497 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
498 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
499 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
500 },
501 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The target is a shared drive.
502 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
503 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
504 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
505 # ID for this resource name.
506 },
507 },
508 ],
509 },
510 &quot;settingsChange&quot;: { # Information about settings changes. # Settings were changed.
511 &quot;restrictionChanges&quot;: [ # The set of changes made to restrictions.
512 { # Information about restriction policy changes to a feature.
513 &quot;newRestriction&quot;: &quot;A String&quot;, # The restriction in place after the change.
514 &quot;feature&quot;: &quot;A String&quot;, # The feature which had a change in restriction policy.
515 },
516 ],
517 },
518 &quot;rename&quot;: { # An object was renamed. # An object was renamed.
519 &quot;newTitle&quot;: &quot;A String&quot;, # The new title of the drive object.
520 &quot;oldTitle&quot;: &quot;A String&quot;, # The previous title of the drive object.
521 },
522 &quot;permissionChange&quot;: { # A change of the permission setting on an item. # The permission on an object was changed.
523 &quot;removedPermissions&quot;: [ # The set of permissions removed by this change.
524 { # The permission setting of an object.
525 &quot;allowDiscovery&quot;: True or False, # If true, the item can be discovered (e.g. in the user&#x27;s &quot;Shared with me&quot;
526 # collection) without needing a link to the item.
527 &quot;role&quot;: &quot;A String&quot;, # Indicates the
528 # &lt;a href=&quot;/drive/web/manage-sharing#roles&quot;&gt;Google Drive permissions
529 # role&lt;/a&gt;. The role determines a user&#x27;s ability to read, write, and
530 # comment on items.
531 &quot;anyone&quot;: { # Represents any user (including a logged out user). # If set, this permission applies to anyone, even logged out users.
532 },
533 &quot;user&quot;: { # Information about an end user. # The user to whom this permission applies.
534 &quot;knownUser&quot;: { # A known user. # A known user.
535 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
536 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
537 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
538 # https://developers.google.com/people/.
539 },
540 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
541 },
542 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
543 },
544 },
545 &quot;domain&quot;: { # Information about a domain. # The domain to whom this permission applies.
546 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
547 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
548 },
549 &quot;group&quot;: { # Information about a group. # The group to whom this permission applies.
550 &quot;email&quot;: &quot;A String&quot;, # The email address of the group.
551 &quot;title&quot;: &quot;A String&quot;, # The title of the group.
552 },
553 },
554 ],
555 &quot;addedPermissions&quot;: [ # The set of permissions added by this change.
556 { # The permission setting of an object.
557 &quot;allowDiscovery&quot;: True or False, # If true, the item can be discovered (e.g. in the user&#x27;s &quot;Shared with me&quot;
558 # collection) without needing a link to the item.
559 &quot;role&quot;: &quot;A String&quot;, # Indicates the
560 # &lt;a href=&quot;/drive/web/manage-sharing#roles&quot;&gt;Google Drive permissions
561 # role&lt;/a&gt;. The role determines a user&#x27;s ability to read, write, and
562 # comment on items.
563 &quot;anyone&quot;: { # Represents any user (including a logged out user). # If set, this permission applies to anyone, even logged out users.
564 },
565 &quot;user&quot;: { # Information about an end user. # The user to whom this permission applies.
566 &quot;knownUser&quot;: { # A known user. # A known user.
567 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
568 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
569 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
570 # https://developers.google.com/people/.
571 },
572 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
573 },
574 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
575 },
576 },
577 &quot;domain&quot;: { # Information about a domain. # The domain to whom this permission applies.
578 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
579 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
580 },
581 &quot;group&quot;: { # Information about a group. # The group to whom this permission applies.
582 &quot;email&quot;: &quot;A String&quot;, # The email address of the group.
583 &quot;title&quot;: &quot;A String&quot;, # The title of the group.
584 },
585 },
586 ],
587 },
588 &quot;dlpChange&quot;: { # A change in the object&#x27;s data leak prevention status. # A change happened in data leak prevention status.
589 &quot;type&quot;: &quot;A String&quot;, # The type of Data Leak Prevention (DLP) change.
590 },
591 &quot;edit&quot;: { # An empty message indicating an object was edited. # An object was edited.
592 },
593 &quot;reference&quot;: { # Activity in applications other than Drive. # An object was referenced in an application outside of Drive/Docs.
594 &quot;type&quot;: &quot;A String&quot;, # The reference type corresponding to this event.
595 },
596 },
597 &quot;timestamp&quot;: &quot;A String&quot;, # The activity occurred at this specific time.
598 &quot;timeRange&quot;: { # Information about time ranges. # The activity occurred over this time range.
599 &quot;endTime&quot;: &quot;A String&quot;, # The end of the time range.
600 &quot;startTime&quot;: &quot;A String&quot;, # The start of the time range.
601 },
602 &quot;actors&quot;: [ # All actor(s) responsible for the activity.
603 { # The actor of a Drive activity.
604 &quot;anonymous&quot;: { # Empty message representing an anonymous user or indicating the authenticated # An anonymous user.
605 # user should be anonymized.
606 },
607 &quot;impersonation&quot;: { # Information about an impersonation, where an admin acts on behalf of an end # An account acting on behalf of another.
608 # user. Information about the acting admin is not currently available.
609 &quot;impersonatedUser&quot;: { # Information about an end user. # The impersonated user.
610 &quot;knownUser&quot;: { # A known user. # A known user.
611 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
612 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
613 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
614 # https://developers.google.com/people/.
615 },
616 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
617 },
618 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
619 },
620 },
621 },
622 &quot;administrator&quot;: { # Empty message representing an administrator. # An administrator.
623 },
624 &quot;user&quot;: { # Information about an end user. # An end user.
625 &quot;knownUser&quot;: { # A known user. # A known user.
626 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
627 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
628 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
629 # https://developers.google.com/people/.
630 },
631 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
632 },
633 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
634 },
635 },
636 &quot;system&quot;: { # Event triggered by system operations instead of end users. # A non-user actor (i.e. system triggered).
637 &quot;type&quot;: &quot;A String&quot;, # The type of the system event that may triggered activity.
638 },
639 },
640 ],
641 &quot;actions&quot;: [ # Details on all actions in this activity.
642 { # Information about the action.
643 &quot;actor&quot;: { # The actor of a Drive activity. # The actor responsible for this action (or empty if all actors are
644 # responsible).
645 &quot;anonymous&quot;: { # Empty message representing an anonymous user or indicating the authenticated # An anonymous user.
646 # user should be anonymized.
647 },
648 &quot;impersonation&quot;: { # Information about an impersonation, where an admin acts on behalf of an end # An account acting on behalf of another.
649 # user. Information about the acting admin is not currently available.
650 &quot;impersonatedUser&quot;: { # Information about an end user. # The impersonated user.
651 &quot;knownUser&quot;: { # A known user. # A known user.
652 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
653 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
654 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
655 # https://developers.google.com/people/.
656 },
657 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
658 },
659 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
660 },
661 },
662 },
663 &quot;administrator&quot;: { # Empty message representing an administrator. # An administrator.
664 },
665 &quot;user&quot;: { # Information about an end user. # An end user.
666 &quot;knownUser&quot;: { # A known user. # A known user.
667 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
668 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
669 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
670 # https://developers.google.com/people/.
671 },
672 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
673 },
674 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
675 },
676 },
677 &quot;system&quot;: { # Event triggered by system operations instead of end users. # A non-user actor (i.e. system triggered).
678 &quot;type&quot;: &quot;A String&quot;, # The type of the system event that may triggered activity.
679 },
680 },
681 &quot;target&quot;: { # Information about the target of activity. # The target this action affects (or empty if affecting all targets). This
682 # represents the state of the target immediately after this action occurred.
683 &quot;teamDrive&quot;: { # This item is deprecated; please see `Drive` instead. # This field is deprecated; please use the `drive` field instead.
684 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `Drive.name` instead.
685 &quot;root&quot;: { # A Drive item, such as a file or folder. # This field is deprecated; please see `Drive.root` instead.
686 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
687 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
688 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
689 },
690 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
691 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
692 },
693 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
694 # folder.
695 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
696 },
697 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
698 },
699 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
700 # https://developers.google.com/drive/v3/web/mime-types.
701 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
702 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
703 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
704 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
705 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
706 # ID for this resource name.
707 },
708 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
709 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
710 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
711 },
712 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
713 &quot;knownUser&quot;: { # A known user. # A known user.
714 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
715 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
716 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
717 # https://developers.google.com/people/.
718 },
719 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
720 },
721 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
722 },
723 },
724 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
725 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
726 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
727 },
728 },
729 },
730 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `Drive.title` instead.
731 },
732 &quot;fileComment&quot;: { # A comment on a file. # The target is a comment on a Drive file.
733 &quot;legacyDiscussionId&quot;: &quot;A String&quot;, # The discussion thread to which the comment was added. This identifier is an
734 # opaque string compatible with the Drive API and references the first
735 # comment in a discussion; see
736 # https://developers.google.com/drive/v3/reference/comments/get
737 &quot;linkToDiscussion&quot;: &quot;A String&quot;, # The link to the discussion thread containing this comment, for example,
738 # &quot;https://docs.google.com/DOCUMENT_ID/edit?disco=THREAD_ID&quot;.
739 &quot;parent&quot;: { # A Drive item, such as a file or folder. # The Drive item containing this comment.
740 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
741 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
742 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
743 },
744 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
745 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
746 },
747 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
748 # folder.
749 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
750 },
751 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
752 },
753 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
754 # https://developers.google.com/drive/v3/web/mime-types.
755 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
756 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
757 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
758 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
759 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
760 # ID for this resource name.
761 },
762 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
763 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
764 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
765 },
766 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
767 &quot;knownUser&quot;: { # A known user. # A known user.
768 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
769 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
770 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
771 # https://developers.google.com/people/.
772 },
773 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
774 },
775 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
776 },
777 },
778 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
779 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
780 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
781 },
782 },
783 },
784 &quot;legacyCommentId&quot;: &quot;A String&quot;, # The comment in the discussion thread. This identifier is an opaque string
785 # compatible with the Drive API; see
786 # https://developers.google.com/drive/v3/reference/comments/get
787 },
788 &quot;driveItem&quot;: { # A Drive item, such as a file or folder. # The target is a Drive item.
789 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
790 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
791 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
792 },
793 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
794 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
795 },
796 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
797 # folder.
798 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
799 },
800 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
801 },
802 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
803 # https://developers.google.com/drive/v3/web/mime-types.
804 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
805 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
806 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
807 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
808 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
809 # ID for this resource name.
810 },
811 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
812 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
813 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
814 },
815 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
816 &quot;knownUser&quot;: { # A known user. # A known user.
817 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
818 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
819 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
820 # https://developers.google.com/people/.
821 },
822 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
823 },
824 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
825 },
826 },
827 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
828 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
829 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
830 },
831 },
832 },
833 &quot;drive&quot;: { # Information about a shared drive. # The target is a shared drive.
834 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
835 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
836 # ID for this resource name.
837 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
838 &quot;root&quot;: { # A Drive item, such as a file or folder. # The root of this shared drive.
839 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
840 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
841 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
842 },
843 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
844 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
845 },
846 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
847 # folder.
848 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
849 },
850 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
851 },
852 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the Drive item. See
853 # https://developers.google.com/drive/v3/web/mime-types.
854 &quot;owner&quot;: { # Information about the owner of a Drive item. # Information about the owner of this Drive item.
855 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The drive that owns the item.
856 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
857 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
858 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
859 # ID for this resource name.
860 },
861 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
862 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
863 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
864 },
865 &quot;user&quot;: { # Information about an end user. # The user that owns the Drive item.
866 &quot;knownUser&quot;: { # A known user. # A known user.
867 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
868 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
869 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
870 # https://developers.google.com/people/.
871 },
872 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
873 },
874 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
875 },
876 },
877 &quot;domain&quot;: { # Information about a domain. # The domain of the Drive item owner.
878 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
879 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
880 },
881 },
882 },
883 },
884 },
885 &quot;detail&quot;: { # Data describing the type and additional information of an action. # The type and detailed information about the action.
886 &quot;comment&quot;: { # A change about comments on an object. # A change about comments was made.
887 &quot;suggestion&quot;: { # A suggestion. # A change on a suggestion.
888 &quot;subtype&quot;: &quot;A String&quot;, # The sub-type of this event.
889 },
890 &quot;assignment&quot;: { # A comment with an assignment. # A change on an assignment.
891 &quot;subtype&quot;: &quot;A String&quot;, # The sub-type of this event.
892 &quot;assignedUser&quot;: { # Information about an end user. # The user to whom the comment was assigned.
893 &quot;knownUser&quot;: { # A known user. # A known user.
894 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
895 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
896 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
897 # https://developers.google.com/people/.
898 },
899 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
900 },
901 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
902 },
903 },
904 },
905 &quot;post&quot;: { # A regular posted comment. # A change on a regular posted comment.
906 &quot;subtype&quot;: &quot;A String&quot;, # The sub-type of this event.
907 },
908 &quot;mentionedUsers&quot;: [ # Users who are mentioned in this comment.
909 { # Information about an end user.
910 &quot;knownUser&quot;: { # A known user. # A known user.
911 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
912 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
913 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
914 # https://developers.google.com/people/.
915 },
916 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
917 },
918 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
919 },
920 },
921 ],
922 },
923 &quot;delete&quot;: { # An object was deleted. # An object was deleted.
924 &quot;type&quot;: &quot;A String&quot;, # The type of delete action taken.
925 },
926 &quot;restore&quot;: { # A deleted object was restored. # A deleted object was restored.
927 &quot;type&quot;: &quot;A String&quot;, # The type of restore action taken.
928 },
929 &quot;create&quot;: { # An object was created. # An object was created.
930 &quot;copy&quot;: { # An object was created by copying an existing object. # If present, indicates the object was created by copying an existing Drive
931 # object.
932 &quot;originalObject&quot;: { # A lightweight reference to the target of activity. # The the original object.
933 &quot;driveItem&quot;: { # A lightweight reference to a Drive item, such as a file or folder. # The target is a Drive item.
934 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
935 # folder.
936 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
937 },
938 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
939 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
940 },
941 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
942 },
943 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
944 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
945 },
946 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
947 },
948 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
949 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
950 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
951 },
952 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The target is a shared drive.
953 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
954 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
955 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
956 # ID for this resource name.
957 },
958 },
959 },
960 &quot;new&quot;: { # An object was created from scratch. # If present, indicates the object was newly created (e.g. as a blank
961 # document), not derived from a Drive object or external object.
962 },
963 &quot;upload&quot;: { # An object was uploaded into Drive. # If present, indicates the object originated externally and was uploaded
964 # to Drive.
965 },
966 },
967 &quot;move&quot;: { # An object was moved. # An object was moved.
968 &quot;addedParents&quot;: [ # The added parent object(s).
969 { # A lightweight reference to the target of activity.
970 &quot;driveItem&quot;: { # A lightweight reference to a Drive item, such as a file or folder. # The target is a Drive item.
971 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
972 # folder.
973 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
974 },
975 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
976 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
977 },
978 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
979 },
980 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
981 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
982 },
983 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
984 },
985 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
986 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
987 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
988 },
989 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The target is a shared drive.
990 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
991 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
992 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
993 # ID for this resource name.
994 },
995 },
996 ],
997 &quot;removedParents&quot;: [ # The removed parent object(s).
998 { # A lightweight reference to the target of activity.
999 &quot;driveItem&quot;: { # A lightweight reference to a Drive item, such as a file or folder. # The target is a Drive item.
1000 &quot;driveFolder&quot;: { # A Drive item which is a folder. # The Drive item is a folder. Includes information about the type of
1001 # folder.
1002 &quot;type&quot;: &quot;A String&quot;, # The type of Drive folder.
1003 },
1004 &quot;folder&quot;: { # This item is deprecated; please see `DriveFolder` instead. # This field is deprecated; please use the `driveFolder` field instead.
1005 &quot;type&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveFolder.type` instead.
1006 },
1007 &quot;file&quot;: { # This item is deprecated; please see `DriveFile` instead. # This field is deprecated; please use the `driveFile` field instead.
1008 },
1009 &quot;name&quot;: &quot;A String&quot;, # The target Drive item. The format is &quot;items/ITEM_ID&quot;.
1010 &quot;driveFile&quot;: { # A Drive item which is a file. # The Drive item is a file.
1011 },
1012 &quot;title&quot;: &quot;A String&quot;, # The title of the Drive item.
1013 },
1014 &quot;teamDrive&quot;: { # This item is deprecated; please see `DriveReference` instead. # This field is deprecated; please use the `drive` field instead.
1015 &quot;title&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.title` instead.
1016 &quot;name&quot;: &quot;A String&quot;, # This field is deprecated; please see `DriveReference.name` instead.
1017 },
1018 &quot;drive&quot;: { # A lightweight reference to a shared drive. # The target is a shared drive.
1019 &quot;title&quot;: &quot;A String&quot;, # The title of the shared drive.
1020 &quot;name&quot;: &quot;A String&quot;, # The resource name of the shared drive. The format is
1021 # &quot;COLLECTION_ID/DRIVE_ID&quot;. Clients should not assume a specific collection
1022 # ID for this resource name.
1023 },
1024 },
1025 ],
1026 },
1027 &quot;settingsChange&quot;: { # Information about settings changes. # Settings were changed.
1028 &quot;restrictionChanges&quot;: [ # The set of changes made to restrictions.
1029 { # Information about restriction policy changes to a feature.
1030 &quot;newRestriction&quot;: &quot;A String&quot;, # The restriction in place after the change.
1031 &quot;feature&quot;: &quot;A String&quot;, # The feature which had a change in restriction policy.
1032 },
1033 ],
1034 },
1035 &quot;rename&quot;: { # An object was renamed. # An object was renamed.
1036 &quot;newTitle&quot;: &quot;A String&quot;, # The new title of the drive object.
1037 &quot;oldTitle&quot;: &quot;A String&quot;, # The previous title of the drive object.
1038 },
1039 &quot;permissionChange&quot;: { # A change of the permission setting on an item. # The permission on an object was changed.
1040 &quot;removedPermissions&quot;: [ # The set of permissions removed by this change.
1041 { # The permission setting of an object.
1042 &quot;allowDiscovery&quot;: True or False, # If true, the item can be discovered (e.g. in the user&#x27;s &quot;Shared with me&quot;
1043 # collection) without needing a link to the item.
1044 &quot;role&quot;: &quot;A String&quot;, # Indicates the
1045 # &lt;a href=&quot;/drive/web/manage-sharing#roles&quot;&gt;Google Drive permissions
1046 # role&lt;/a&gt;. The role determines a user&#x27;s ability to read, write, and
1047 # comment on items.
1048 &quot;anyone&quot;: { # Represents any user (including a logged out user). # If set, this permission applies to anyone, even logged out users.
1049 },
1050 &quot;user&quot;: { # Information about an end user. # The user to whom this permission applies.
1051 &quot;knownUser&quot;: { # A known user. # A known user.
1052 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
1053 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
1054 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
1055 # https://developers.google.com/people/.
1056 },
1057 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
1058 },
1059 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
1060 },
1061 },
1062 &quot;domain&quot;: { # Information about a domain. # The domain to whom this permission applies.
1063 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
1064 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
1065 },
1066 &quot;group&quot;: { # Information about a group. # The group to whom this permission applies.
1067 &quot;email&quot;: &quot;A String&quot;, # The email address of the group.
1068 &quot;title&quot;: &quot;A String&quot;, # The title of the group.
1069 },
1070 },
1071 ],
1072 &quot;addedPermissions&quot;: [ # The set of permissions added by this change.
1073 { # The permission setting of an object.
1074 &quot;allowDiscovery&quot;: True or False, # If true, the item can be discovered (e.g. in the user&#x27;s &quot;Shared with me&quot;
1075 # collection) without needing a link to the item.
1076 &quot;role&quot;: &quot;A String&quot;, # Indicates the
1077 # &lt;a href=&quot;/drive/web/manage-sharing#roles&quot;&gt;Google Drive permissions
1078 # role&lt;/a&gt;. The role determines a user&#x27;s ability to read, write, and
1079 # comment on items.
1080 &quot;anyone&quot;: { # Represents any user (including a logged out user). # If set, this permission applies to anyone, even logged out users.
1081 },
1082 &quot;user&quot;: { # Information about an end user. # The user to whom this permission applies.
1083 &quot;knownUser&quot;: { # A known user. # A known user.
1084 &quot;isCurrentUser&quot;: True or False, # True if this is the user making the request.
1085 &quot;personName&quot;: &quot;A String&quot;, # The identifier for this user that can be used with the People API to get
1086 # more information. The format is &quot;people/ACCOUNT_ID&quot;. See
1087 # https://developers.google.com/people/.
1088 },
1089 &quot;deletedUser&quot;: { # A user whose account has since been deleted. # A user whose account has since been deleted.
1090 },
1091 &quot;unknownUser&quot;: { # A user about whom nothing is currently known. # A user about whom nothing is currently known.
1092 },
1093 },
1094 &quot;domain&quot;: { # Information about a domain. # The domain to whom this permission applies.
1095 &quot;legacyId&quot;: &quot;A String&quot;, # An opaque string used to identify this domain.
1096 &quot;name&quot;: &quot;A String&quot;, # The name of the domain, e.g. &quot;google.com&quot;.
1097 },
1098 &quot;group&quot;: { # Information about a group. # The group to whom this permission applies.
1099 &quot;email&quot;: &quot;A String&quot;, # The email address of the group.
1100 &quot;title&quot;: &quot;A String&quot;, # The title of the group.
1101 },
1102 },
1103 ],
1104 },
1105 &quot;dlpChange&quot;: { # A change in the object&#x27;s data leak prevention status. # A change happened in data leak prevention status.
1106 &quot;type&quot;: &quot;A String&quot;, # The type of Data Leak Prevention (DLP) change.
1107 },
1108 &quot;edit&quot;: { # An empty message indicating an object was edited. # An object was edited.
1109 },
1110 &quot;reference&quot;: { # Activity in applications other than Drive. # An object was referenced in an application outside of Drive/Docs.
1111 &quot;type&quot;: &quot;A String&quot;, # The reference type corresponding to this event.
1112 },
1113 },
1114 &quot;timeRange&quot;: { # Information about time ranges. # The action occurred over this time range.
1115 &quot;endTime&quot;: &quot;A String&quot;, # The end of the time range.
1116 &quot;startTime&quot;: &quot;A String&quot;, # The start of the time range.
1117 },
1118 &quot;timestamp&quot;: &quot;A String&quot;, # The action occurred at this specific time.
1119 },
1120 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001121 },
1122 ],
1123 }</pre>
1124</div>
1125
1126<div class="method">
1127 <code class="details" id="query_next">query_next(previous_request, previous_response)</code>
1128 <pre>Retrieves the next page of results.
1129
1130Args:
1131 previous_request: The request for the previous page. (required)
1132 previous_response: The response from the request for the previous page. (required)
1133
1134Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -07001135 A request object that you can call &#x27;execute()&#x27; on to request the next
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001136 page. Returns None if there are no more items in the collection.
1137 </pre>
1138</div>
1139
1140</body></html>